Web Scraping with R

Ayush Patel

At Azim Premji University, Bengaluru

02 Feb, 2026

Hello

I am Ayush.

I am a researcher working at the intersection of data, development and economics.

I am a RStudio (Posit) certified tidyverse Instructor.

I am a Researcher at Oxford Poverty and Human development Initiative (OPHI), at the University of Oxford.

Did you come prepared?

  • You have installed R. If not see this link.

  • You have installed RStudio/Positron/VScode or any other IDE. It is recommended that you work through an IDE

  • You have the libraries {tidyverse} {rvest} installed

  • You have the latest or a very recent version of chrome browser

Learning Goals

How to scrape informaiton from the web (static and dynamic)

Why? Just ask AI



I asked for you, it said something on the lines of well, maybe. But mostly no

Components you need to learn

  1. Basic HTML and CSS
  2. Using selector tools to indentify elements on a web page
  3. R (or any other) programming

HTML Essentials for web scraping

What is HTML?


Hyper Text Markup Language

A language to create webpages

Used to define what goes where on a webpage

Used to define how stuff looks

In HTML, almost all things are Elements

In HTML, all features of a thing are called it’s attributes

What does it look like?

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

What does it look like?

<html>
<head>
  <title>Page title</title>
</head>
<body>
  <h1 id='first'>A heading</h1>
  <p>Some text; <b>some bold text.</b></p>
  <img src='myimg.png' width='100' height='100'>
</body>

Try Yourself

Navigate to the Data-is-Plural blog. Use F12 in you browser see the HTML for the website. Explore the elements and their attributes in your browser.

Try Yourself

Navigate to CSS Diner and complete till Level 10

Early Harvest {rvest} - Introduction

From library rvest

Getting the HTML doc


plural_webpage <- read_html("https://www.data-is-plural.com/") 

class(plural_webpage)
[1] "xml_document" "xml_node"    

What does it look like?


plural_webpage
{html_document}
<html lang="en-us" prefix="og: http://ogp.me/ns#">
[1] <head>\n<meta http-equiv="Content-Type" content="text/html; charset=UTF-8 ...
[2] <body>\n\n<header><h1><a href="./">Data Is Plural</a></h1>\n\n</header><s ...

A small example

I wish to create a table for the recent edition of the Data is Plural blog. I want three columns. Date, summary and the link to the archive.



Following slides are a walk through on how to achieve this.

Get all <time> elements

plural_webpage |>
  html_element("time")
{html_node}
<time datetime="2025-08-27 00:00:00 UTC">
plural_webpage |>
  html_elements("time") 
{xml_nodeset (5)}
[1] <time datetime="2025-08-27 00:00:00 UTC">2025.08.27</time>
[2] <time datetime="2025-07-16 00:00:00 UTC">2025.07.16</time>
[3] <time datetime="2025-05-21 00:00:00 UTC">2025.05.21</time>
[4] <time datetime="2025-05-14 00:00:00 UTC">2025.05.14</time>
[5] <time datetime="2025-04-30 00:00:00 UTC">2025.04.30</time>
plural_webpage |>
  html_elements("time") |>
  html_text2()
[1] "2025.08.27" "2025.07.16" "2025.05.21" "2025.05.14" "2025.04.30"

Getting all summary using class

plural_webpage |>
  html_elements(".edition-summary") |>
  html_text2()
[1] "Congressional campaign policy platforms, Billboard hits, EU antitrust cases, Texas oil and gas, and 100,000+ wines."                      
[2] "Landfills, car crash datasets, AI legal flubs, British literary prizes, and subway art."                                                  
[3] "Unemployment insurance, FiveThirtyEight’s public data, corporate contracts, positions of power in Italy, and state formation/dissolution."
[4] "Deportation records, European workforces, California ghost guns, US dams, and what the nose knows."                                       
[5] "Refugee and asylum policies, tens of millions of flights, US sewer overflow sites, previously unmapped waterways, and canoe marathons."   

Getting Attributes

plural_webpage |>
  html_elements("ul.edition-list a") |>
  html_attr("href")
[1] "./archive/2025-08-27-edition/" "./archive/2025-07-16-edition/"
[3] "./archive/2025-05-21-edition/" "./archive/2025-05-14-edition/"
[5] "./archive/2025-04-30-edition/"

Putting it together

tibble(
  date = plural_webpage |>
  html_elements("time") |>
  html_text2(),
  summary = plural_webpage |>
  html_elements(".edition-summary") |>
  html_text2(),
  link = paste0(
    "https://www.data-is-plural.com/",
    plural_webpage |>
  html_elements("ul.edition-list a") |>
  html_attr("href") |>
  str_replace(".","")
      )
    ) |>
      kableExtra::kable() |>
      kableExtra::kable_styling() |>
      kableExtra::scroll_box(width = '100%', height = '650px')
1
this part of the code is to create a table that can scroll, you can ignore it.

Putting it together

date summary link
2025.08.27 Congressional campaign policy platforms, Billboard hits, EU antitrust cases, Texas oil and gas, and 100,000+ wines. https://www.data-is-plural.com//archive/2025-08-27-edition/
2025.07.16 Landfills, car crash datasets, AI legal flubs, British literary prizes, and subway art. https://www.data-is-plural.com//archive/2025-07-16-edition/
2025.05.21 Unemployment insurance, FiveThirtyEight’s public data, corporate contracts, positions of power in Italy, and state formation/dissolution. https://www.data-is-plural.com//archive/2025-05-21-edition/
2025.05.14 Deportation records, European workforces, California ghost guns, US dams, and what the nose knows. https://www.data-is-plural.com//archive/2025-05-14-edition/
2025.04.30 Refugee and asylum policies, tens of millions of flights, US sewer overflow sites, previously unmapped waterways, and canoe marathons. https://www.data-is-plural.com//archive/2025-04-30-edition/

Your Turn

This page maintains the speeches at RBI

Get the information of the displayed speeches: date, speaker, displayed content and the link to the pdf in a table

But how to get all the speeches?

Notice anything when you navigate to the next page for the speeches?


https://website.rbi.org.in/web/rbi/speeches?delta=10&start=3

https://website.rbi.org.in/web/rbi/speeches?delta=10&start=4

https://website.rbi.org.in/web/rbi/speeches?delta=10&start=5

Programming


Function: We need a set of general steps that can apply to all pages of the website

Reiterate: Need to apply these steps as many times as needed

General Steps


Every operation needs a link. A different one

For every page the structure remains the same for listing the detials of interest. We use this idea for making the general steps.

We need the details structured as a table after scraping.

General Steps - all operation

Read HTML, Identify elements, extract content, structure as desired

## Read HTML

html_doc <- read_html("https://website.rbi.org.in/web/rbi/speeches?delta=10&start=1")

## Identify, extract and strucutre


tibble(
  date = html_doc |>
  html_elements(".notification-date") |>
  html_text2(),
  short_description = html_doc |>
  html_elements("span.mtm_list_item_heading") |>
  html_text2(),
  speaker = html_doc |>
  html_elements("div.speaker-content") |>
  html_text2(),
  link = paste0(
   "https://website.rbi.org.in",
   html_doc |>
    html_elements("a.matomo_download") |>
    html_attr("href")
 
  )
)

General Steps - all operation

# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 13, 2026 Regulation in the Digital Era – Issues, Opportuni… Shri S… http…
 2 Jan 12, 2026 Issues and Challenges in Banking Supervision in t… Shri S… http…
 3 Jan 09, 2026 Regulation and Supervision – Adapting to the Digi… Shri S… http…
 4 Dec 12, 2025 Stablecoins – Do They Have a Role in the Financia… Shri T… http…
 5 Dec 01, 2025 Reading the Pitch: Banking Strategies for a Long … Shri S… http…
 6 Nov 28, 2025 Micro Matters, Macro Momentum: Microfinance for V… Shri S… http…
 7 Nov 26, 2025 Timely and Topical Statistics for Agile Policy Ma… Dr. Po… http…
 8 Nov 20, 2025 Regulation by RBI: Some Reflections - Lecture del… Shri S… http…
 9 Nov 14, 2025 Central Bank Accounting Practices: The Reserve Ba… Shri S… http…
10 Nov 11, 2025 Where Governance Intent is Strong, Regulatory Gap… Shri S… http…

General Steps - set up as a function

get_speech_details <- function(lnk){

## Read HTML
  html_doc <- read_html(lnk)

## Identify, extract and strucutre


tibble(
  date = html_doc |>
  html_elements(".notification-date") |>
  html_text2(),
  short_description = html_doc |>
  html_elements("span.mtm_list_item_heading") |>
  html_text2(),
  speaker = html_doc |>
  html_elements("div.speaker-content") |>
  html_text2(),
  link = paste0(
   "https://website.rbi.org.in",
   html_doc |>
    html_elements("a.matomo_download") |>
    html_attr("href")
    )
) -> details

## return 

return(details)

}

The function in use

get_speech_details(link_pages[4])
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 19, 2025 Keynote address by Shri Sanjay Malhotra, Governor… Shri S… http…
 2 Apr 10, 2025 Shared Vision, Shared Responsibility – Strengthen… Shri S… http…
 3 Apr 01, 2025 RBI: Stability, Trust, Growth                      Shri S… http…
 4 Apr 01, 2025 Welcome Address by Shri Sanjay Malhotra, Governor… Shri S… http…
 5 Mar 26, 2025 Address by Shri Sanjay Malhotra, Governor, Reserv… Shri S… http…
 6 Mar 17, 2025 Transforming Grievance Redress: The AI Advantage … Shri S… http…
 7 Mar 13, 2025 Keynote Address by Shri Sanjay Malhotra, Governor… Shri S… http…
 8 Mar 10, 2025 Address by Shri Sanjay Malhotra, Governor, Reserv… Shri S… http…
 9 Feb 21, 2025 Inaugural address at the Indian Institute of Mana… Shri M… http…
10 Jan 20, 2025 Challenges in Liability Management: Maintaining t… Shri M… http…

We must Iterate - purrr::map()

map(
  link_pages[1:8],
  get_speech_details
) 
[[1]]
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 13, 2026 Regulation in the Digital Era – Issues, Opportuni… Shri S… http…
 2 Jan 12, 2026 Issues and Challenges in Banking Supervision in t… Shri S… http…
 3 Jan 09, 2026 Regulation and Supervision – Adapting to the Digi… Shri S… http…
 4 Dec 12, 2025 Stablecoins – Do They Have a Role in the Financia… Shri T… http…
 5 Dec 01, 2025 Reading the Pitch: Banking Strategies for a Long … Shri S… http…
 6 Nov 28, 2025 Micro Matters, Macro Momentum: Microfinance for V… Shri S… http…
 7 Nov 26, 2025 Timely and Topical Statistics for Agile Policy Ma… Dr. Po… http…
 8 Nov 20, 2025 Regulation by RBI: Some Reflections - Lecture del… Shri S… http…
 9 Nov 14, 2025 Central Bank Accounting Practices: The Reserve Ba… Shri S… http…
10 Nov 11, 2025 Where Governance Intent is Strong, Regulatory Gap… Shri S… http…

[[2]]
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 10, 2025 Transformational Technologies and Banking: Key Is… Shri T… http…
 2 Nov 07, 2025 The Evolving Facets of Regulations - Keynote Addr… Shri S… http…
 3 Oct 29, 2025 Policy Frameworks for Economic Resilience: The ca… Dr. Po… http…
 4 Oct 16, 2025 Opening Remarks by Shri Sanjay Malhotra, Governor… Shri S… http…
 5 Oct 15, 2025 Inclusion is Innovation’s Highest Purpose: Lesson… Shri S… http…
 6 Oct 10, 2025 Driving Inclusive and Sustainable Growth Through … Shri S… http…
 7 Oct 07, 2025 Responsible Artificial Intelligence (AI) – Balanc… Shri T… http…
 8 Sep 30, 2025 Transforming Public Sector Banks for a Viksit Bha… Shri S… http…
 9 Sep 22, 2025 Balancing Innovation and Prudence- AI’s Role in I… Shri M… http…
10 Aug 25, 2025 Inaugural Address by Shri Sanjay Malhotra, Govern… Shri S… http…

[[3]]
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 20, 2025 Rethinking Regulations in an Interconnected Finan… Shri M… http…
 2 Jul 29, 2025 From Vanji to Viksit Bharat: Banking on Trust, Te… Shri S… http…
 3 Jul 22, 2025 Reflections from a Banker’s Journey - Valedictory… Shri S… http…
 4 Jul 18, 2025 Working Together, Growing Stronger: Responsible G… Shri S… http…
 5 Jul 18, 2025 Catalysing Sustainable & Green Infrastructure Fin… Shri M… http…
 6 Jul 02, 2025 Bridging the Credit Gap: The Evolution of India’s… Shri M… http…
 7 Jun 23, 2025 Convocation Address by Shri Sanjay Malhotra, Gove… Shri S… http…
 8 Jun 09, 2025 Moving the Boundaries of Financial Inclusion- A R… Shri M… http…
 9 Apr 28, 2025 Building a robust ecosystem for Green and Sustain… Shri M… http…
10 Apr 27, 2025 India: A partner in progress and prosperity - Key… Shri S… http…

[[4]]
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 19, 2025 Keynote address by Shri Sanjay Malhotra, Governor… Shri S… http…
 2 Apr 10, 2025 Shared Vision, Shared Responsibility – Strengthen… Shri S… http…
 3 Apr 01, 2025 RBI: Stability, Trust, Growth                      Shri S… http…
 4 Apr 01, 2025 Welcome Address by Shri Sanjay Malhotra, Governor… Shri S… http…
 5 Mar 26, 2025 Address by Shri Sanjay Malhotra, Governor, Reserv… Shri S… http…
 6 Mar 17, 2025 Transforming Grievance Redress: The AI Advantage … Shri S… http…
 7 Mar 13, 2025 Keynote Address by Shri Sanjay Malhotra, Governor… Shri S… http…
 8 Mar 10, 2025 Address by Shri Sanjay Malhotra, Governor, Reserv… Shri S… http…
 9 Feb 21, 2025 Inaugural address at the Indian Institute of Mana… Shri M… http…
10 Jan 20, 2025 Challenges in Liability Management: Maintaining t… Shri M… http…

[[5]]
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Dec 17, 2024 Strengthening the IBC Framework for Effective Res… Shri M… http…
 2 Dec 16, 2024 New Frontiers in Economic Research - Keynote Addr… Dr. Mi… http…
 3 Dec 04, 2024 Mitigating Climate Change Risks and Fostering a R… Shri M… http…
 4 Dec 03, 2024 Catalysing Inclusive Growth: Strengthening Partne… Shri S… http…
 5 Nov 27, 2024 Supervision amidst Emerging Risks - Opening remar… Shri S… http…
 6 Nov 27, 2024 RBI: Navigating 90 Years of Legacy, Regulation, a… Shri M… http…
 7 Nov 25, 2024 MSMEs-Bridging the Credit Gap through Improving C… Shri S… http…
 8 Nov 22, 2024 Communicating Monetary Policy - Opening remarks b… Dr. Mi… http…
 9 Nov 21, 2024 Balancing Inflation and Growth: The Cardinal Prin… Shri S… http…
10 Nov 19, 2024 The Board’s Role in Navigating Transformation - S… Shri S… http…

[[6]]
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 18, 2024 Transformative Governance through Sound Boards - … Shri S… http…
 2 Nov 14, 2024 Sailing Through Turbulence: India’s Tryst with Fi… Shri S… http…
 3 Nov 13, 2024 Unlocking New Growth Frontiers in the Digital Age… Dr. Mi… http…
 4 Oct 26, 2024 Remarks by Shri Shaktikanta Das, Governor, Reserv… Shri S… http…
 5 Oct 22, 2024 Recalibrating from Divergence to Convergence: The… Dr. Mi… http…
 6 Oct 15, 2024 Central Banks and Financial Stability - Address b… Shri S… http…
 7 Oct 15, 2024 Assessing Inflation Targeting - Address delivered… Dr. Mi… http…
 8 Oct 14, 2024 Central Banking at Crossroads - Keynote Address b… Shri S… http…
 9 Sep 30, 2024 Governance in SFBs - Driving Sustainable Growth a… Shri S… http…
10 Sep 25, 2024 Reaching the Unreached – Ensuring Last Mile Conne… Shri S… http…

[[7]]
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 24, 2024 Central Banking in the 21st Century: Changing Par… Shri S… http…
 2 Sep 16, 2024 Financing for Sustainable Agriculture - Keynote A… Shri S… http…
 3 Sep 13, 2024 Global Financial Stability; Risks and Opportuniti… Shri S… http…
 4 Sep 12, 2024 Managing the Challenges in Financing Infrastructu… Shri M… http…
 5 Sep 05, 2024 India at an Inflection Point: Some Thoughts - Ina… Shri S… http…
 6 Sep 03, 2024 Financing India’s Aspirations - Keynote Address d… Dr. Mi… http…
 7 Sep 02, 2024 Transforming Financial Landscapes: Building Resil… Shri S… http…
 8 Aug 30, 2024 Address by Shri Shaktikanta Das, Governor, Reserv… Shri S… http…
 9 Aug 28, 2024 FinTech Innovations for India @100: Shaping the F… Shri S… http…
10 Aug 26, 2024 Inaugural Address by Shri Shaktikanta Das, Govern… Shri S… http…

[[8]]
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 22, 2024 Local to Global: The Role of the Financial Sector… Shri S… http…
 2 Aug 19, 2024 Deposit Insurance: Keeping Pace with the Changing… Shri M… http…
 3 Aug 14, 2024 Financial Stability in the Emerging Technology La… Shri S… http…
 4 Aug 13, 2024 Navigating Emerging Challenges for Deposit Insure… Dr. Mi… http…
 5 Jul 25, 2024 Climate Change – The Emerging Challenge - Remarks… Shri M… http…
 6 Jul 22, 2024 Role of Assurance Functions in Navigating Growth … Shri M… http…
 7 Jul 19, 2024 Current Issues in the Indian Banking and Financia… Shri S… http…
 8 Jul 12, 2024 Future Readying India’s Monetary Policy - Address… Dr. Mi… http…
 9 Jul 09, 2024 Shared Vision, Shared Responsibilities: Advancing… Shri S… http…
10 Jul 09, 2024 Role of Statutory Auditors in Emerging Financial … Shri M… http…

saftey first - purrr::map()

map(
  link_pages,
  safely(get_speech_details)
) 
[[1]]
[[1]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 13, 2026 Regulation in the Digital Era – Issues, Opportuni… Shri S… http…
 2 Jan 12, 2026 Issues and Challenges in Banking Supervision in t… Shri S… http…
 3 Jan 09, 2026 Regulation and Supervision – Adapting to the Digi… Shri S… http…
 4 Dec 12, 2025 Stablecoins – Do They Have a Role in the Financia… Shri T… http…
 5 Dec 01, 2025 Reading the Pitch: Banking Strategies for a Long … Shri S… http…
 6 Nov 28, 2025 Micro Matters, Macro Momentum: Microfinance for V… Shri S… http…
 7 Nov 26, 2025 Timely and Topical Statistics for Agile Policy Ma… Dr. Po… http…
 8 Nov 20, 2025 Regulation by RBI: Some Reflections - Lecture del… Shri S… http…
 9 Nov 14, 2025 Central Bank Accounting Practices: The Reserve Ba… Shri S… http…
10 Nov 11, 2025 Where Governance Intent is Strong, Regulatory Gap… Shri S… http…

[[1]]$error
NULL


[[2]]
[[2]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 10, 2025 Transformational Technologies and Banking: Key Is… Shri T… http…
 2 Nov 07, 2025 The Evolving Facets of Regulations - Keynote Addr… Shri S… http…
 3 Oct 29, 2025 Policy Frameworks for Economic Resilience: The ca… Dr. Po… http…
 4 Oct 16, 2025 Opening Remarks by Shri Sanjay Malhotra, Governor… Shri S… http…
 5 Oct 15, 2025 Inclusion is Innovation’s Highest Purpose: Lesson… Shri S… http…
 6 Oct 10, 2025 Driving Inclusive and Sustainable Growth Through … Shri S… http…
 7 Oct 07, 2025 Responsible Artificial Intelligence (AI) – Balanc… Shri T… http…
 8 Sep 30, 2025 Transforming Public Sector Banks for a Viksit Bha… Shri S… http…
 9 Sep 22, 2025 Balancing Innovation and Prudence- AI’s Role in I… Shri M… http…
10 Aug 25, 2025 Inaugural Address by Shri Sanjay Malhotra, Govern… Shri S… http…

[[2]]$error
NULL


[[3]]
[[3]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 20, 2025 Rethinking Regulations in an Interconnected Finan… Shri M… http…
 2 Jul 29, 2025 From Vanji to Viksit Bharat: Banking on Trust, Te… Shri S… http…
 3 Jul 22, 2025 Reflections from a Banker’s Journey - Valedictory… Shri S… http…
 4 Jul 18, 2025 Working Together, Growing Stronger: Responsible G… Shri S… http…
 5 Jul 18, 2025 Catalysing Sustainable & Green Infrastructure Fin… Shri M… http…
 6 Jul 02, 2025 Bridging the Credit Gap: The Evolution of India’s… Shri M… http…
 7 Jun 23, 2025 Convocation Address by Shri Sanjay Malhotra, Gove… Shri S… http…
 8 Jun 09, 2025 Moving the Boundaries of Financial Inclusion- A R… Shri M… http…
 9 Apr 28, 2025 Building a robust ecosystem for Green and Sustain… Shri M… http…
10 Apr 27, 2025 India: A partner in progress and prosperity - Key… Shri S… http…

[[3]]$error
NULL


[[4]]
[[4]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 19, 2025 Keynote address by Shri Sanjay Malhotra, Governor… Shri S… http…
 2 Apr 10, 2025 Shared Vision, Shared Responsibility – Strengthen… Shri S… http…
 3 Apr 01, 2025 RBI: Stability, Trust, Growth                      Shri S… http…
 4 Apr 01, 2025 Welcome Address by Shri Sanjay Malhotra, Governor… Shri S… http…
 5 Mar 26, 2025 Address by Shri Sanjay Malhotra, Governor, Reserv… Shri S… http…
 6 Mar 17, 2025 Transforming Grievance Redress: The AI Advantage … Shri S… http…
 7 Mar 13, 2025 Keynote Address by Shri Sanjay Malhotra, Governor… Shri S… http…
 8 Mar 10, 2025 Address by Shri Sanjay Malhotra, Governor, Reserv… Shri S… http…
 9 Feb 21, 2025 Inaugural address at the Indian Institute of Mana… Shri M… http…
10 Jan 20, 2025 Challenges in Liability Management: Maintaining t… Shri M… http…

[[4]]$error
NULL


[[5]]
[[5]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Dec 17, 2024 Strengthening the IBC Framework for Effective Res… Shri M… http…
 2 Dec 16, 2024 New Frontiers in Economic Research - Keynote Addr… Dr. Mi… http…
 3 Dec 04, 2024 Mitigating Climate Change Risks and Fostering a R… Shri M… http…
 4 Dec 03, 2024 Catalysing Inclusive Growth: Strengthening Partne… Shri S… http…
 5 Nov 27, 2024 Supervision amidst Emerging Risks - Opening remar… Shri S… http…
 6 Nov 27, 2024 RBI: Navigating 90 Years of Legacy, Regulation, a… Shri M… http…
 7 Nov 25, 2024 MSMEs-Bridging the Credit Gap through Improving C… Shri S… http…
 8 Nov 22, 2024 Communicating Monetary Policy - Opening remarks b… Dr. Mi… http…
 9 Nov 21, 2024 Balancing Inflation and Growth: The Cardinal Prin… Shri S… http…
10 Nov 19, 2024 The Board’s Role in Navigating Transformation - S… Shri S… http…

[[5]]$error
NULL


[[6]]
[[6]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 18, 2024 Transformative Governance through Sound Boards - … Shri S… http…
 2 Nov 14, 2024 Sailing Through Turbulence: India’s Tryst with Fi… Shri S… http…
 3 Nov 13, 2024 Unlocking New Growth Frontiers in the Digital Age… Dr. Mi… http…
 4 Oct 26, 2024 Remarks by Shri Shaktikanta Das, Governor, Reserv… Shri S… http…
 5 Oct 22, 2024 Recalibrating from Divergence to Convergence: The… Dr. Mi… http…
 6 Oct 15, 2024 Central Banks and Financial Stability - Address b… Shri S… http…
 7 Oct 15, 2024 Assessing Inflation Targeting - Address delivered… Dr. Mi… http…
 8 Oct 14, 2024 Central Banking at Crossroads - Keynote Address b… Shri S… http…
 9 Sep 30, 2024 Governance in SFBs - Driving Sustainable Growth a… Shri S… http…
10 Sep 25, 2024 Reaching the Unreached – Ensuring Last Mile Conne… Shri S… http…

[[6]]$error
NULL


[[7]]
[[7]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 24, 2024 Central Banking in the 21st Century: Changing Par… Shri S… http…
 2 Sep 16, 2024 Financing for Sustainable Agriculture - Keynote A… Shri S… http…
 3 Sep 13, 2024 Global Financial Stability; Risks and Opportuniti… Shri S… http…
 4 Sep 12, 2024 Managing the Challenges in Financing Infrastructu… Shri M… http…
 5 Sep 05, 2024 India at an Inflection Point: Some Thoughts - Ina… Shri S… http…
 6 Sep 03, 2024 Financing India’s Aspirations - Keynote Address d… Dr. Mi… http…
 7 Sep 02, 2024 Transforming Financial Landscapes: Building Resil… Shri S… http…
 8 Aug 30, 2024 Address by Shri Shaktikanta Das, Governor, Reserv… Shri S… http…
 9 Aug 28, 2024 FinTech Innovations for India @100: Shaping the F… Shri S… http…
10 Aug 26, 2024 Inaugural Address by Shri Shaktikanta Das, Govern… Shri S… http…

[[7]]$error
NULL


[[8]]
[[8]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 22, 2024 Local to Global: The Role of the Financial Sector… Shri S… http…
 2 Aug 19, 2024 Deposit Insurance: Keeping Pace with the Changing… Shri M… http…
 3 Aug 14, 2024 Financial Stability in the Emerging Technology La… Shri S… http…
 4 Aug 13, 2024 Navigating Emerging Challenges for Deposit Insure… Dr. Mi… http…
 5 Jul 25, 2024 Climate Change – The Emerging Challenge - Remarks… Shri M… http…
 6 Jul 22, 2024 Role of Assurance Functions in Navigating Growth … Shri M… http…
 7 Jul 19, 2024 Current Issues in the Indian Banking and Financia… Shri S… http…
 8 Jul 12, 2024 Future Readying India’s Monetary Policy - Address… Dr. Mi… http…
 9 Jul 09, 2024 Shared Vision, Shared Responsibilities: Advancing… Shri S… http…
10 Jul 09, 2024 Role of Statutory Auditors in Emerging Financial … Shri M… http…

[[8]]$error
NULL


[[9]]
[[9]]$result
NULL

[[9]]$error
<error/tibble_error_incompatible_size>
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 10: Existing data.
• Size 9: Column `link`.
ℹ Only values of size one are recycled.
---
Backtrace:
     ▆
  1. └─purrr::map(link_pages, safely(get_speech_details))
  2.   └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
  3.     ├─purrr:::with_indexed_errors(...)
  4.     │ └─base::withCallingHandlers(...)
  5.     ├─purrr:::call_with_cleanup(...)
  6.     └─purrr (local) .f(.x[[i]], ...)
  7.       ├─purrr:::capture_error(.f(...), otherwise, quiet)
  8.       │ └─base::tryCatch(...)
  9.       │   └─base (local) tryCatchList(expr, classes, parentenv, handlers)
 10.       │     └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
 11.       │       └─base (local) doTryCatch(return(expr), name, parentenv, handler)
 12.       └─global .f(...)
 13.         └─tibble::tibble(...)


[[10]]
[[10]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 08, 2024 Evolution of financial markets in India: Charting… Shri S… http…
 2 Apr 02, 2024 Regulatory Insights into 2024 - Special Address -… Shri M… http…
 3 Apr 01, 2024 Reserved Maybe, Effective Certainly                Shri S… http…
 4 Apr 01, 2024 Welcome Address by Shri Shaktikanta Das, Governor… Shri S… http…
 5 Mar 28, 2024 The Indian Economy: Opportunities and Challenges … Dr. Mi… http…
 6 Mar 21, 2024 Safe banking practices – protecting the young - S… Shri S… http…
 7 Mar 15, 2024 Inaugural address by Shri Shaktikanta Das, Govern… Shri S… http…
 8 Mar 04, 2024 Address by Governor, Reserve Bank of India at the… Shri S… http…
 9 Feb 29, 2024 Credible Communication – Perspective and Thoughts… Shri M… http…
10 Feb 20, 2024 The Relevance of SEACEN in a Turbulent World - Cl… Dr. Mi… http…

[[10]]$error
NULL


[[11]]
[[11]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 15, 2024 Fundamental Shifts in the Global Economy: New Com… Shri S… http…
 2 Feb 09, 2024 No More a Shadow (of a) Bank - Remarks delivered … Shri M… http…
 3 Jan 29, 2024 Harnessing Digital Technologies in Central Banks:… Dr. Mi… http…
 4 Jan 29, 2024 Role and Expectations of Directors of Urban Co-op… Shri S… http…
 5 Jan 25, 2024 The Vital Role of Internal Ombudsman in Ensuring … Shri S… http…
 6 Jan 17, 2024 India’s Journey from Crisis to Confidence - Speec… Shri S… http…
 7 Jan 17, 2024 Resolution of Stressed Assets and IBC – the Futur… Shri S… http…
 8 Jan 17, 2024 Safeguarding Financial Stability: The Crucial Rol… Shri S… http…
 9 Jan 11, 2024 Insolvency & Bankruptcy Code – Towards Achieving … Shri S… http…
10 Jan 11, 2024 Turnaround of the Indian Banking System - Keynote… Shri S… http…

[[11]]$error
NULL


[[12]]
[[12]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 01, 2024 Innovations in Banking - The emerging role for Te… Shri M… http…
 2 Dec 28, 2023 Building resilient brand India amidst global unce… Shri S… http…
 3 Nov 23, 2023 Changing Paradigms in the Financial Landscape - R… Shri M… http…
 4 Nov 22, 2023 Winning in Uncertain Times: The Indian Experience… Shri S… http…
 5 Nov 09, 2023 Emerging India: A Land of Stability and Opportuni… Shri S… http…
 6 Nov 07, 2023 Towards A Greener Cleaner India - Inaugural Addre… Dr. Mi… http…
 7 Nov 02, 2023 Reflections: Challenges in Regulations - Remarks … Shri M… http…
 8 Oct 26, 2023 Fostering Economic Growth through Sustainable Fin… Shri S… http…
 9 Oct 20, 2023 Price and Financial Stability: Managing Complemen… Shri S… http…
10 Sep 25, 2023 A Customer Centric Approach-Navigating the Path t… Shri S… http…

[[12]]$error
NULL


[[13]]
[[13]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 21, 2023 India’s Financial Sector - From Exuberance to Res… Michae… http…
 2 Sep 07, 2023 Credit Intermediation – Can regulations tango wit… Shri M… http…
 3 Sep 06, 2023 FinTech and the Changing Financial Landscape - Ke… Shri S… http…
 4 Sep 05, 2023 Art of Monetary Policy Making: The Indian Context… Shri S… http…
 5 Sep 05, 2023 FinTech Innovation and approach to regulation - K… Shri T… http…
 6 Sep 04, 2023 Keynote Address by Shri Shaktikanta Das, Governor… Shri S… http…
 7 Aug 23, 2023 “Building Blocks for a Sustainable Future: Some R… Shri S… http…
 8 Aug 11, 2023 Closing Remarks by Shri Shaktikanta Das, Governor… Shri S… http…
 9 Jul 25, 2023 Remarks of Shri M. Rajeshwar Rao, Deputy Governor… Shri M… http…
10 Jul 11, 2023 RBI & Fintech: The Road Ahead - Keynote address d… Shri T… http…

[[13]]$error
NULL


[[14]]
[[14]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jul 03, 2023 Statistics Shape the Setting of Monetary Policy -… Dr. Mi… http…
 2 Jun 30, 2023 Inaugural Address by Shri Shaktikanta Das, Govern… Shri S… http…
 3 Jun 15, 2023 Some perspectives on Banking Supervision - Openin… Shri M… http…
 4 Jun 13, 2023 Central Banking in Uncertain Times: The Indian Ex… Shri S… http…
 5 Jun 11, 2023 Productivity: The Promise of Progress - Inaugural… Dr. Mi… http…
 6 Jun 05, 2023 Governance in Banks: Driving Sustainable Growth a… Shri M… http…
 7 Jun 05, 2023 Cyber Security for a safer Financial System - Key… Shri M… http…
 8 May 31, 2023 Governance in Banks: Driving Sustainable Growth a… Shri M… http…
 9 May 29, 2023 ‘Governance in Banks: Driving Sustainable Growth … Shri S… http…
10 May 10, 2023 The Dawn of India’s Age - Inaugural address deliv… Dr. Mi… http…

[[14]]$error
NULL


[[15]]
[[15]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 27, 2023 Future-Proofing the Indian Financial System - Ina… Shri S… http…
 2 Apr 03, 2023 Financial Sector as an Enabler for Developed Indi… Shri M… http…
 3 Mar 18, 2023 Inaugural Address by Shri Shaktikanta Das, Govern… Shri S… http…
 4 Mar 17, 2023 G20 for a Better Global Economic Order during Ind… Shri S… http…
 5 Mar 10, 2023 The FinTech Revolution in India- Innovation, Incl… Shri M… http…
 6 Mar 09, 2023 Self-Regulation in Financial Markets – Looking Ba… Shri M… http…
 7 Mar 06, 2023 Address by Governor, Shri Shaktikanta Das, Reserv… Shri S… http…
 8 Jan 27, 2023 Financial markets in India: In pursuit of stabili… Shri S… http…
 9 Jan 06, 2023 South Asia’s Current Macroeconomic Challenges and… Shri S… http…
10 Dec 27, 2022 Fintech & Regulation - Speech delivered by Shri T… Shri T… http…

[[15]]$error
NULL


[[16]]
[[16]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Dec 22, 2022 Challenges and Opportunities in Scaling up Green … Shri M… http…
 2 Dec 08, 2022 Capacity Building in the Financial Sector in the … Shri M… http…
 3 Nov 30, 2022 Financial Benchmarks in India: A Coming of Age - … Shri T… http…
 4 Nov 24, 2022 The Lighter Side of Making Monetary Policy - Spee… Dr. Mi… http…
 5 Nov 19, 2022 Inaugural Address by Shri Shaktikanta Das, Govern… Shri S… http…
 6 Nov 15, 2022 Lost in Transmission? Financial Markets and Monet… Dr. Mi… http…
 7 Nov 07, 2022 Journey Towards an Inclusive and Responsible Micr… Shri M… http…
 8 Nov 02, 2022 India : A Story of Resilience - Inaugural Address… Shri S… http…
 9 Oct 31, 2022 Fifty Years of Indian Banking Through the Lens of… Dr. Mi… http…
10 Oct 28, 2022 Excellence in Customer Service in the Changing Pa… Shri S… http…

[[16]]$error
NULL


[[17]]
[[17]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 21, 2022 Reflections on Policy Choices in the Indian Finan… Shri M… http…
 2 Oct 21, 2022 Internationalisation of the Rupee: Is it time to … Shri T… http…
 3 Oct 16, 2022 Virtual Launch of DBUs - Welcome Remarks by Shri … Shri S… http…
 4 Sep 20, 2022 Fintech as a Force Multiplier - Address by Shri S… Shri S… http…
 5 Sep 08, 2022 Inclusive Credit: The Next Milestone - Remarks de… Shri M… http…
 6 Sep 05, 2022 Financial Market Reforms: Approach and Expectatio… Shri S… http…
 7 Aug 24, 2022 Dynamics of Inflation in South Asia - Keynote add… Dr. Mi… http…
 8 Aug 24, 2022 Corporate Bond Markets in India – Challenges and … Shri T… http…
 9 Aug 13, 2022 INDIA@75 - Speech delivered by Dr. Michael Debabr… Dr. Mi… http…
10 Jul 22, 2022 Banking Beyond Tomorrow - Speech by Shri Shaktika… Shri S… http…

[[17]]$error
NULL


[[18]]
[[18]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jul 09, 2022 Globalisation of Inflation and Conduct of Monetar… Shri S… http…
 2 Jun 29, 2022 Inaugural Address by Governor, Shri Shaktikanta D… Shri S… http…
 3 Jun 24, 2022 Geopolitical Spillovers and the Indian Economy - … Dr. Mi… http…
 4 Jun 20, 2022 Building a Future-ready Banking System - Remarks … Shri M… http…
 5 Jun 17, 2022 Disruptions & Opportunities in the Financial Sect… Shri S… http…
 6 Jun 10, 2022 Inaugural Address by Governor, Shri Shaktikanta D… Shri S… http…
 7 Jun 09, 2022 Indian Business: Past, Present and Future - Addre… Shri S… http…
 8 May 06, 2022 Resolution of Stressed Assets and IBC - Address d… Shri M… http…
 9 Mar 24, 2022 Inauguration of the Reserve Bank Innovation Hub (… Shri S… http…
10 Mar 11, 2022 Taper 2022: Touchdown in Turbulence - Keynote Add… Dr. Mi… http…

[[18]]$error
NULL


[[19]]
[[19]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Mar 10, 2022 Importance of Governance and Assurance Functions … Shri M… http…
 2 Mar 04, 2022 Monetary Policy and Central Bank Communication - … Shri S… http…
 3 Feb 14, 2022 Cryptocurrencies – An assessment - Keynote addres… Shri T… http…
 4 Jan 28, 2022 RBI’s Pandemic Response: Stepping out of Oblivion… Dr. Mi… http…
 5 Dec 24, 2021 Financial Inclusion Empowers Monetary Policy       Dr. Mi… http…
 6 Dec 15, 2021 Ownership & Governance – Building the Edifice for… Shri M… http…
 7 Nov 16, 2021 Contours of Economic Recovery                      Shri S… http…
 8 Nov 15, 2021 Keynote address delivered by Michael Debabrata Pa… Dr. Mi… http…
 9 Nov 12, 2021 Launch of RBI-Retail Direct Scheme and Reserve Ba… Shri S… http…
10 Nov 02, 2021 Governance and Prudential Supervision of Financia… Shri M… http…

[[19]]$error
NULL


[[20]]
[[20]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 27, 2021 Micro finance: Empowering a Billion Dreams         Shri M… http…
 2 Oct 25, 2021 Role of Audit in the Modern Financial System       Shri S… http…
 3 Oct 22, 2021 Chasing the Horizon                                Shri M… http…
 4 Oct 14, 2021 India’s Capital Account Management – An assessment Shri T… http…
 5 Sep 28, 2021 Responsible Digital Innovation - Speech by Shri T… Shri T… http…
 6 Sep 22, 2021 Beyond COVID: Towards a Stronger, Inclusive and S… Shri S… http…
 7 Sep 20, 2021 Heed to Heal - Climate Change is the Emerging Fin… Shri M… http…
 8 Sep 16, 2021 Monetary Policy: Trial by Pandemic                 Dr. Mi… http…
 9 Sep 13, 2021 Regulatory Framework for Account Aggregators       Shri M… http…
10 Aug 31, 2021 Keynote Address at the 21st FIMMDA-PDAI Annual Co… Shri S… http…

[[20]]$error
NULL


[[21]]
[[21]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 13, 2021 Building a More Resilient Financial System in Ind… Shri M… http…
 2 Jul 22, 2021 Central Bank Digital Currency – Is This the Futur… Shri T… http…
 3 Jul 15, 2021 Financial Inclusion – Past, Present and Future     Shri S… http…
 4 Apr 16, 2021 Open Banking in India                              Shri M… http…
 5 Mar 25, 2021 Financial Sector in the New Decade - Address by S… Shri S… http…
 6 Feb 25, 2021 Creating New Opportunities for Growth              Shri S… http…
 7 Jan 16, 2021 Towards a Stable Financial System                  Shri S… http…
 8 Dec 16, 2020 National Strategy on Financial Education 2020-25   Shri S… http…
 9 Nov 26, 2020 Accelerating Financial Market Reforms in India     Shri S… http…
10 Nov 06, 2020 NBFC Regulation- Looking ahead                     Shri M… http…

[[21]]$error
NULL


[[22]]
[[22]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 16, 2020 What Forces Could Drive the Recovery?              Shri S… http…
 2 Aug 27, 2020 It is Time for Banks to Look Deeply Within: Reori… Shri S… http…
 3 Jul 27, 2020 Are Dynamic Shifts Underway in the Indian Economy? Shri S… http…
 4 Jul 11, 2020 Indian Economy at a Crossroad: A view from Financ… Shri S… http…
 5 Mar 06, 2020 Micro, Small and Medium Enterprises: Challenges a… Shri S… http…
 6 Feb 24, 2020 Banking Landscape in the 21st Century              Shri S… http…
 7 Feb 12, 2020 Address by Hon’ble President of India at NIBM Gol… SHRI R… http…
 8 Jan 24, 2020 Seven Ages of India’s Monetary Policy              Shri S… http…
 9 Jan 07, 2020 Journey towards Inclusive Growth in India          Shri S… http…
10 Jan 01, 2020 $ 5 Trillion Economy: Aspiration to Action         Shri S… http…

[[22]]$error
NULL


[[23]]
[[23]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 29, 2019 Rural and Agriculture Finance: Critical Input to … Shri M… http…
 2 Nov 28, 2019 Microfinance as the next wave of Financial Inclus… Shri M… http…
 3 Nov 16, 2019 Indian Banking at Crossroads: Some Reflections     Shri S… http…
 4 Sep 23, 2019 Regulatory and Supervisory Expectations on Compli… Shri M… http…
 5 Sep 19, 2019 Dimensions of India’s External Sector Resilience   Shri S… http…
 6 Sep 05, 2019 20th FIMMDA - PDAI Annual Conference               Shri B… http…
 7 Aug 26, 2019 Trade War: Is it a prelude to deglobalisation?     Shri B… http…
 8 Aug 19, 2019 Emerging Challenges to Financial Stability         Shri S… http…
 9 Aug 05, 2019 Consumer Protection in a digital financial world … Shri M… http…
10 Jul 26, 2019 Governor’s Remarks at the Book Release of Shri V.… Shri S… http…

[[23]]$error
NULL


[[24]]
[[24]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 29, 2019 Development of Viable Capital Markets – The India… "Dr. V… http…
 2 Jun 28, 2019 Governor's Speech on the occasion of the Annual S… "Shri … http…
 3 Jun 24, 2019 Statement by Governor on launch of Complaint Mana… "Shri … http…
 4 Jun 17, 2019 Evolving Role of Central Banks                     "Shri … http…
 5 Jun 08, 2019 Indian Banking Sector: Current Status and the Way… "Shri … http…
 6 Apr 25, 2019 India’s growing significance in global arena. Is … "Shri … http…
 7 Apr 25, 2019 17th C.D. Deshmukh Memorial Lecture                "Shri … http…
 8 Apr 13, 2019 Global Risks and Policy Challenges facing Emergin… "Shri … http…
 9 Mar 25, 2019 Opportunities and Challenges of FinTech - Shri Sh… ""      http…
10 Mar 19, 2019 Some thoughts on Fiscal Federalism                 "Shri … http…

[[24]]$error
NULL


[[25]]
[[25]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 24, 2019 Some Reflections on Micro Credit and How a Public… Dr. Vi… http…
 2 Jan 18, 2019 Reflections on Current Policy Issues Facing the I… Shri S… http…
 3 Nov 02, 2018 Some Thoughts on Credit Risk and Bank Capital Reg… Shri N… http…
 4 Oct 26, 2018 On the Importance of Independent Regulatory Insti… Dr. Vi… http…
 5 Oct 12, 2018 Prompt Corrective Action: An Essential Element of… Dr. Vi… http…
 6 Sep 20, 2018 Preventive Vigilance – The Key Tool of Good Gover… Dr. Ur… http…
 7 Aug 31, 2018 State Government Market Borrowings – Issues and P… Shri B… http…
 8 Aug 24, 2018 Importance of strong Governance & Secure IT Opera… Shri N… http…
 9 Aug 20, 2018 Public Credit Registry (PCR) and Goods and Servic… Dr. Vi… http…
10 Aug 17, 2018 Innovation in Retail Payments - Urjit R. Patel, G… Dr. Ur… http…

[[25]]$error
NULL


[[26]]
[[26]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 03, 2018 Remarks for the Convocation Ceremony at the Meghn… Dr. Ur… http…
 2 May 30, 2018 Excellence in Payments - Shri B. P. Kanungo, Depu… Shri B… http…
 3 Apr 18, 2018 It is not Business as Usual for Lenders and Borro… Shri N… http…
 4 Mar 14, 2018 Banking Regulatory Powers Should Be Ownership Neu… Dr. Ur… http…
 5 Feb 10, 2018 India’s Economic Reforms: Reflections on the Unfi… Profes… http…
 6 Jan 15, 2018 Understanding and Managing Interest Rate Risk at … Dr. Vi… http…
 7 Jan 10, 2018 Regulation and Financial Stability                 Shri N… http…
 8 Dec 15, 2017 CAFRAL Conference on “Financial System and the Ma… Dr. Ur… http…
 9 Dec 14, 2017 Global spillovers: Managing capital flows and for… Dr. Vi… http…
10 Nov 20, 2017 One Year in the Life of India's Monetary Policy C… Dr. Mi… http…

[[26]]$error
NULL


[[27]]
[[27]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 16, 2017 Monetary Transmission in India: Why is it importa… Dr. Vi… http…
 2 Nov 05, 2017 Initial Steps Towards the Setting up of a Public … Dr. Vi… http…
 3 Oct 23, 2017 Financial regulation and economic policies for av… Dr. Ur… http…
 4 Sep 07, 2017 The Unfinished Agenda: Restoring Public Sector Ba… Dr. Vi… http…
 5 Aug 31, 2017 Seminar on Agricultural Debt Waiver – Efficacy an… Dr. Ur… http…
 6 Aug 19, 2017 Resolution of Stressed Assets: Towards the Endgame Dr. Ur… http…
 7 Jul 15, 2017 Priority Sector Lending – Status, Issues and Futu… Shri S… http…
 8 Jul 06, 2017 A Case for Public Credit Registry in India         Dr. Vi… http…
 9 Jun 16, 2017 Bankers & SME Borrowers: The Emerging Mantras      Shri S… http…
10 May 30, 2017 Customer Service in Banks: Time to Raise the Bar!  Shri S… http…

[[27]]$error
NULL


[[28]]
[[28]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 May 19, 2017 A Call for Enterprise in Economic Data Generation… Dr. Vi… http…
 2 Apr 28, 2017 A Bank Should Be Something One Can “Bank” Upon     Dr. Vi… http…
 3 Mar 02, 2017 Improving investor interest – Recent Legislative … Shri R… http…
 4 Mar 01, 2017 FinTechs and Virtual Currency                      Shri R… http…
 5 Feb 21, 2017 Some Ways to Decisively Resolve Bank Stressed Ass… Dr. Vi… http…
 6 Feb 20, 2017 Payment Systems - Next Orbit                       Shri R… http…
 7 Feb 20, 2017 Financing MSMEs: Banks & FinTechs – Competition, … Shri S… http…
 8 Feb 01, 2017 Fraud Risk Management in Banks: The Do’s and Don’… Shri S… http…
 9 Jan 11, 2017 Macro and Micro Drivers of Business Potential of … Dr. Ur… http…
10 Nov 28, 2016 Issues in Infrastructure Financing in India        Shri N… http…

[[28]]$error
NULL


[[29]]
[[29]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 24, 2016 Pioneering Best Practices in Banking: India’s Rec… Shri R… http…
 2 Oct 24, 2016 Evolution of Payment Systems in India: Or is it a… Shri R… http…
 3 Sep 30, 2016 Setting The Priorities Right                       Shri S… http…
 4 Sep 28, 2016 Financial Stability in a Weak Global Environment   Shri S… http…
 5 Sep 27, 2016 Challenges in Developing the Bond Market in BRICS  Shri R… http…
 6 Sep 24, 2016 Financial Inclusion in India – The Journey so far… Shri S… http…
 7 Sep 07, 2016 Asset Quality of Indian Banks: Way Forward         Shri N… http…
 8 Sep 07, 2016 Information Technology & Cyber Risk in Banking Se… Shri S… http…
 9 Sep 03, 2016 The Independence of the Central Bank               Dr. Ra… http…
10 Aug 26, 2016 Strengthening Our Debt Markets                     Dr. Ra… http…

[[29]]$error
NULL


[[30]]
[[30]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 24, 2016 Banking Sector Reforms: A Journey, Not a Destinat… Shri S… http…
 2 Aug 23, 2016 ABCD of MSME Credit                                Shri S… http…
 3 Aug 18, 2016 New paradigm in Banking : Banking is Necessary, N… Shri R… http…
 4 Aug 16, 2016 Interesting, Profitable, and Challenging: Banking… Dr. Ra… http…
 5 Aug 16, 2016 Banking Horizon: Clouds & Silver Linings - presen… Shri S… http…
 6 Jul 29, 2016 Targeted Attacks: Protection of Critical Infrastr… Shri R… http…
 7 Jul 26, 2016 Policy and Evidence                                Dr. Ra… http…
 8 Jul 19, 2016 Information Technology – New Gauntlets for Banks … Shri R… http…
 9 Jul 18, 2016 Remarks of Dr. Raghuram Rajan, Governor - July 18… Dr. Ra… http…
10 Jul 18, 2016 The Changing Paradigm for Financial Inclusion      Dr. Ra… http…

[[30]]$error
NULL


[[31]]
[[31]]$result
NULL

[[31]]$error
<error/tibble_error_incompatible_size>
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 10: Existing data.
• Size 9: Column `link`.
ℹ Only values of size one are recycled.
---
Backtrace:
     ▆
  1. └─purrr::map(link_pages, safely(get_speech_details))
  2.   └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
  3.     ├─purrr:::with_indexed_errors(...)
  4.     │ └─base::withCallingHandlers(...)
  5.     ├─purrr:::call_with_cleanup(...)
  6.     └─purrr (local) .f(.x[[i]], ...)
  7.       ├─purrr:::capture_error(.f(...), otherwise, quiet)
  8.       │ └─base::tryCatch(...)
  9.       │   └─base (local) tryCatchList(expr, classes, parentenv, handlers)
 10.       │     └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
 11.       │       └─base (local) doTryCatch(return(expr), name, parentenv, handler)
 12.       └─global .f(...)
 13.         └─tibble::tibble(...)


[[32]]
[[32]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 26, 2016 Consolidation among Public Sector Banks            Shri R… http…
 2 Apr 20, 2016 Words Matter but so Does Intent                    Dr. Ra… http…
 3 Apr 19, 2016 Indian Debt Market 2020 : The Underpinnings & the… Shri H… http…
 4 Apr 07, 2016 Empowering MSMEs: Issues & Challenges              Shri S… http…
 5 Mar 16, 2016 Global Economic Turmoil: Impact on Indian Economy… Shri H… http…
 6 Mar 12, 2016 India in the Global Economy                        Dr. Ra… http…
 7 Mar 12, 2016 Towards Rules of the Monetary Game                 Dr. Ra… http…
 8 Feb 11, 2016 Asset Resolution & Managing NPAs – What, Why and … Shri S… http…
 9 Feb 11, 2016 Issues in Banking Today                            Dr. Ra… http…
10 Feb 10, 2016 Rural Cooperatives: Repositioning                  Shri R… http…

[[32]]$error
NULL


[[33]]
[[33]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 05, 2016 Indian Banking Sector: Gazing Into The Crystal Ba… Shri S… http…
 2 Feb 05, 2016 Financial Stability – Issues and Concerns : Are W… Shri R… http…
 3 Feb 04, 2016 Strengthening Free Enterprise in India             Dr. Ra… http…
 4 Jan 29, 2016 Financial Reforms - Past and Present               Dr. Ra… http…
 5 Jan 29, 2016 Research Imperatives for the Indian Banking Sector Shri S… http…
 6 Jan 01, 2016 Basel III Liquidity Risk Framework – Implementati… Shri N… http…
 7 Dec 22, 2015 Payment Revolution: Preparing for Participation    Shri R… http…
 8 Dec 21, 2015 NBFCs: Medium Term Prospects                       Shri R… http…
 9 Nov 12, 2015 Economy Unplugged                                  Dr. Ra… http…
10 Nov 06, 2015 Corporate Bond Markets in India: A Framework for … Shri H… http…

[[33]]$error
NULL


[[34]]
[[34]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 31, 2015 Tolerance and Respect for Economic Progress        Dr. Ra… http…
 2 Oct 28, 2015 Whither the Co-operative Banking?                  Shri R… http…
 3 Oct 06, 2015 Indian Banking Sector- A Regulatory Perspective    Shri S… http…
 4 Sep 18, 2015 Sustainable Growth in the Financial Sector: 2015   Dr. Ra… http…
 5 Sep 16, 2015 Financing India’s Growth - Challenges and Way Ahe… Shri S… http…
 6 Sep 15, 2015 Asset Reconstruction and NPA Management in India   Shri R… http…
 7 Sep 09, 2015 Financial Consumer (Depositor) Protection – Refle… Shri R… http…
 8 Sep 04, 2015 Basel III Implementation- Challenges for Indian b… Shri N… http…
 9 Aug 25, 2015 Financial Market Regulation in India – Looking Ba… Shri H… http…
10 Aug 25, 2015 Disruptive Innovation and Inclusive Growth – Some… Shri R… http…

[[34]]$error
NULL


[[35]]
[[35]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 24, 2015 Strong Sustainable Growth for the Indian Economy   Dr. Ra… http…
 2 Aug 12, 2015 Financing for Infrastructure: Current Issues & Em… Shri H… http…
 3 Aug 10, 2015 Strong Financial Services Sector: Imperative for … Shri S… http…
 4 Aug 03, 2015 IT Governance and IT Strategy: Board’s Eye View    Shri H… http…
 5 Jul 23, 2015 Unintended consequences of new international supe… Shri S… http…
 6 Jul 15, 2015 Securitisation in India: Ambling Down or Revving … Shri R… http…
 7 Jun 30, 2015 Financial Education: Basics and Beyond             Shri S… http…
 8 Jun 26, 2015 Financial Frauds – Prevention: A Question of Know… Shri R… http…
 9 Jun 23, 2015 Future and new thoughts on co-operative banks      Shri R… http…
10 Jun 22, 2015 Roundtable on Capacity Building in Banks           Shri R… http…

[[35]]$error
NULL


[[36]]
[[36]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 May 28, 2015 Indian Payments System Kaleidoscope                "Shri … http…
 2 May 19, 2015 Going Bust for Growth                              "Dr. R… http…
 3 May 18, 2015 Is India ready for full Capital Account Convertib… "Shri … http…
 4 May 05, 2015 Indian Banking Sector: Emerging Challenges and Wa… "Shri … http…
 5 Apr 20, 2015 Differentiated Banks: Design Challenges            "Shri … http…
 6 Apr 06, 2015 Musings of a Departing Forex Market Regulator      "Shri … http…
 7 Apr 02, 2015 RBI celebrates its 80th Anniversary                ""      http…
 8 Apr 02, 2015 RBI celebrates its 80th Anniversary                "Dr. R… http…
 9 Mar 23, 2015 Banker-Borrower Interplay: Synergies & Challenges  "Shri … http…
10 Mar 23, 2015 Corporate Debt Market: What needs to be done - A … "Shri … http…

[[36]]$error
NULL


[[37]]
[[37]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Mar 20, 2015 Defeating Poverty: Issues and Challenges           "Shri … http…
 2 Mar 17, 2015 Spillovers from Unconventional Monetary Policy—Le… "Chris… http…
 3 Mar 03, 2015 Recent Policy initiatives in Credit Information S… "Shri … http…
 4 Mar 02, 2015 Finder of Financial Fault Lines                    ""      http…
 5 Mar 02, 2015 Emerging Issues in Cyber Security in the Financia… "Shri … http…
 6 Feb 27, 2015 Some Thoughts on Forex Markets in India            "Shri … http…
 7 Feb 24, 2015 Emerging Trends in the Global Financial Landscape… "Shri … http…
 8 Feb 20, 2015 Democracy, Inclusion, and Prosperity               "Dr. R… http…
 9 Feb 10, 2015 Taking on Risk – The Sensible Way                  "Shri … http…
10 Feb 06, 2015 A New Banking Landscape for New India              "Shri … http…

[[37]]$error
NULL


[[38]]
[[38]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 02, 2015 Problem Loan Management & MSME Financing           Shri R… http…
 2 Jan 29, 2015 Derivatives Dynamics: Looking Back & Looking Ahead Shri H… http…
 3 Jan 19, 2015 Changing Contours of Debt Management               Shri G… http…
 4 Jan 15, 2015 Role of Audit Committees in Financial Conglomerat… Shri S… http…
 5 Jan 13, 2015 Business Standard Best B-School Project Awards We… Dr. Ur… http…
 6 Jan 12, 2015 Public Sector Banks: At Cross Road                 Shri R… http…
 7 Dec 29, 2014 Banks, Debt Recovery and Regulations: A synergy    Shri R… http…
 8 Dec 12, 2014 Make in India, Largely for India                   Dr. Ra… http…
 9 Nov 25, 2014 Saving Credit                                      Dr. Ra… http…
10 Nov 24, 2014 Re-designing Regulatory Framework for NBFCs        Shri R… http…

[[38]]$error
NULL


[[39]]
[[39]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 21, 2014 Economic Outlook and Role of Monetary Policy in f… Shri S… http…
 2 Nov 19, 2014 Emerging contours of Regulation and Supervision i… Shri S… http…
 3 Nov 10, 2014 Structure of Foreign banks for emerging nations –… Shri R… http…
 4 Nov 07, 2014 Fortifying Cooperatives – Efforts to strengthen t… Dr. (S… http…
 5 Nov 03, 2014 IMF’s call for higher public spending in infra no… Dr. Ur… http…
 6 Oct 20, 2014 Corporate Sustainability a Panacea for Growth: Va… Shri G… http…
 7 Oct 14, 2014 Banking Renaissance: Inclusion, Innovation & Impl… Shri S… http…
 8 Oct 07, 2014 Role of Financial Sector in Spurring Growth and E… Shri P… http…
 9 Oct 06, 2014 Indian Foreign Exchange Market: Recent Developmen… Shri H… http…
10 Oct 01, 2014 Designing Banking Regulation in Aspiring Economie… Shri R… http…

[[39]]$error
NULL


[[40]]
[[40]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 17, 2014 Protecting Customers - Safeguarding Stability      Dr. (S… http…
 2 Sep 16, 2014 Digital India: Emerging Challenges & Opportunitie… Shri H… http…
 3 Sep 16, 2014 Re-emphasizing the Role of Compliance Function In… Shri S… http…
 4 Sep 15, 2014 Economic & Financial Outlook                       Dr. Ra… http…
 5 Sep 03, 2014 Finance, Credit and Markets                        Shri R… http…
 6 Sep 02, 2014 Financial Intermediation for All – Economic Growt… Dr. (S… http…
 7 Aug 22, 2014 Danger Posed by Shadow Banking Systems to the Glo… Shri R… http…
 8 Aug 21, 2014 Real Estate and Housing - A Sensitive Sector or S… Shri R… http…
 9 Aug 12, 2014 Public Debt Management: Reflections on Strategy &… Shri H… http…
10 Aug 11, 2014 Finance and Opportunity in India                   Dr. Ra… http…

[[40]]$error
NULL


[[41]]
[[41]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 06, 2014 FEMA administration- Prospects and Challenges      Shri G… http…
 2 Jul 25, 2014 Rural Finance: Issues & Challenges                 Shri H… http…
 3 Jul 24, 2014 Unconventional Monetary Policy and the Indian Eco… Shri D… http…
 4 Jul 14, 2014 Role of Financial Sector in the Growth of the Sou… Shri R… http…
 5 Jun 30, 2014 Banks in India: Challenges & Opportunities         Shri H… http…
 6 Jun 30, 2014 Governance in the Corporate Sector – Certain Pers… Shri G… http…
 7 Jun 17, 2014 Financial Sector Legislative Reforms Committee Re… Dr. Ra… http…
 8 Jun 17, 2014 Role of NBFCs in Financial Sector: Regulatory Cha… Shri R… http…
 9 Jun 16, 2014 Indian Banking Sector: Role in Triggering Future … Shri R… http…
10 Jun 10, 2014 New-Gen Urban Cooperative Banks - Some Musings     Shri R… http…

[[41]]$error
NULL


[[42]]
[[42]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 02, 2014 Growing NPAs in Banks: Efficacy of Ratings Accoun… Shri R… http…
 2 May 28, 2014 Concerns about Competitive Monetary Easing         Dr. Ra… http…
 3 May 26, 2014 KYC : Compliance vs Convenience                    Shri R… http…
 4 May 20, 2014 Banks Must build a Structure to provide Superior … Dr. (S… http…
 5 May 20, 2014 Competition in the Banking Sector: Opportunities … Dr. Ra… http…
 6 May 13, 2014 Credit Scoring                                     Dr. (S… http…
 7 May 09, 2014 Indian Banking at Crossroads – Challenge of Risk … Shri R… http…
 8 Apr 23, 2014 Framework for the conduct of macroprudential poli… Dr. K.… http…
 9 Apr 22, 2014 Currency Management in India: Issues and Challeng… Dr. K.… http…
10 Apr 21, 2014 Regulating Capital Account: Some Thoughts          Shri H… http…

[[42]]$error
NULL


[[43]]
[[43]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 16, 2014 Role of Banking in Development Lead Bank Scheme D… Dr. (S… http…
 2 Apr 10, 2014 Competitive Monetary Easing: Is it yesterday once… Dr. Ra… http…
 3 Apr 02, 2014 Regulation of Indian Debt & Derivatives Markets: … Shri H… http…
 4 Apr 01, 2014 Inclusion, Growth and Governance- Issues and Way … Dr. K.… http…
 5 Mar 25, 2014 Strengthening and Revitalising Rural Cooperative … Dr. (S… http…
 6 Mar 21, 2014 Transforming Credit Information into Action: Issu… Dr. K.… http…
 7 Mar 11, 2014 Efficient systems and Proficient banks             Shri G… http…
 8 Mar 11, 2014 Regulation of Indian Debt & Derivatives Markets :… Shri H… http…
 9 Mar 04, 2014 Financial Inclusion - The Indian Model – Challeng… Dr. (S… http…
10 Feb 26, 2014 Fighting Inflation                                 Dr. Ra… http…

[[43]]$error
NULL


[[44]]
[[44]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 25, 2014 Bold face of India’s economy speaks out            Dr. Ra… http…
 2 Feb 15, 2014 Financial Regulation: Which Way Forward?           Shri D… http…
 3 Feb 13, 2014 Inclusive Growth and the Role Technology Can Play… Dr. Ra… http…
 4 Feb 12, 2014 Financial Inclusion: Technology, Institutions and… Dr. Ra… http…
 5 Feb 07, 2014 Human Resource Challenges in Indian banks: ‘Foolp… Dr. K.… http…
 6 Feb 03, 2014 Indian Banking: the New Landscape                  Dr. K.… http…
 7 Jan 29, 2014 Strategy adopted for Financial Inclusion           Dr. (S… http…
 8 Jan 24, 2014 Non-Banking Finance Companies: Game Changers       Shri P… http…
 9 Jan 20, 2014 Recent Global Developments: Implications for Debt… Shri H… http…
10 Jan 15, 2014 Global Liquidity and Financial Contagion           Shri D… http…

[[44]]$error
NULL


[[45]]
[[45]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 13, 2014 Why is Recent Food Inflation in India so Persiste… Shri D… http…
 2 Dec 26, 2013 Unconventional Monetary Policy: The Indian Experi… Shri D… http…
 3 Dec 19, 2013 Economic and Financial Developments in Mizoram     Shri D… http…
 4 Dec 13, 2013 NISM Conference on Ethics and Corporate Governance Dr. (S… http…
 5 Dec 12, 2013 Financial Sector Reforms                           Dr. Ra… http…
 6 Dec 10, 2013 Financial Inclusion in India – An Assessment       Shri P… http…
 7 Dec 09, 2013 Moving Financial Capability Forward: Innovation S… Dr. (S… http…
 8 Dec 05, 2013 Administering FEMA - Evolving Challenges           Shri G… http…
 9 Dec 04, 2013 Credit Scoring – An effective way to ensure avail… Dr. K.… http…
10 Nov 29, 2013 Financial Inclusion - Journey so far and Road Ahe… Dr. (S… http…

[[45]]$error
NULL


[[46]]
[[46]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 18, 2013 Two decades of credit management in banks : Looki… Dr. K.… http…
 2 Nov 15, 2013 The Five Pillars of RBI’s Financial Sector Polici… Dr. Ra… http…
 3 Nov 13, 2013 Vigilance Administration: Encouraging Probity in … Dr. K.… http…
 4 Nov 11, 2013 Training for Commercial Bankers                    Shri G… http…
 5 Oct 31, 2013 Speech on Financial Inclusion delivered by Dr. (S… Dr. (S… http…
 6 Oct 30, 2013 Ideas and Actions for Re-igniting India’s Growth … Dr. K.… http…
 7 Oct 30, 2013 Retail Payments at Crossroads: Economics, Strateg… Shri G… http…
 8 Oct 22, 2013 Financial Education and Customer Protection        Dr. (S… http…
 9 Oct 19, 2013 Filtering Out the Real India                       Dr. Ra… http…
10 Oct 18, 2013 Banking on Quality Data                            Shri G… http…

[[46]]$error
NULL


[[47]]
[[47]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 11, 2013 Welcome to India: State of the Indian economy, ba… Dr. K.… http…
 2 Oct 10, 2013 Regaining the Growth Momentum: Issues and Imperat… Dr. K.… http…
 3 Oct 07, 2013 What, Why and How of Retail (Mass) Banking: Issue… Dr. K.… http…
 4 Oct 07, 2013 Certain Uncertainties, Uncertain Certainties: Ind… Shri H… http…
 5 Oct 04, 2013 Financial Education Key to Promoting Financial In… Dr. (S… http…
 6 Oct 03, 2013 Speech delivered by Shri G Gopalakrishna, Executi… Shri G… http…
 7 Sep 30, 2013 Payment Systems in India: Reflections on some rec… Shri H… http…
 8 Sep 30, 2013 Transformation of Development Financial Instituti… Dr. K.… http…
 9 Sep 28, 2013 National Institute of Bank Management Conclave on… Shri B… http…
10 Sep 17, 2013 Enabling Urban Microfinance                        Dr. (S… http…

[[47]]$error
NULL


[[48]]
[[48]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 06, 2013 Financial Inclusion in India: Journey So Far And … Dr. K.… http…
 2 Aug 30, 2013 Statistics in RBI’s Policy Making Conceptual and … Dr. D.… http…
 3 Aug 30, 2013 Statistics and the Reserve Bank of India           Shri D… http…
 4 Aug 29, 2013 Five Years of Leading the Reserve Bank - Looking … Dr. D.… http…
 5 Aug 23, 2013 Interest Rates and Economic Activity               Shri D… http…
 6 Aug 20, 2013 Infrastructure Financing By Banks In India: Myths… Dr. K.… http…
 7 Aug 17, 2013 Welcome remarks by Dr. Duvvuri Subbarao, Governor… Dr. D.… http…
 8 Aug 15, 2013 Productivity Trends in Indian Banking in the Post… Dr. K.… http…
 9 Aug 13, 2013 Banking Structure in India Looking Ahead by Looki… Dr. D.… http…
10 Aug 02, 2013 Responsible Innovation and Regulation in the Fina… Dr. D.… http…

[[48]]$error
NULL


[[49]]
[[49]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jul 29, 2013 Frauds in the Banking Sector: Causes, Concerns an… Dr. K.… http…
 2 Jul 24, 2013 Address of Dr. (Smt.) Deepali Pant Joshi, Executi… Dr. (S… http…
 3 Jul 18, 2013 Central Banking in Emerging Economies Emerging Ch… Dr. D.… http…
 4 Jul 18, 2013 Financing Strategies for Urban Infrastructure: Tr… Shri H… http…
 5 Jul 16, 2013 Compliance Function in Banks: Back to the basics   Dr. K.… http…
 6 Jul 15, 2013 Conference of Principal Code Compliance Officers … Dr. (S… http…
 7 Jul 12, 2013 Internationalisation and Integration of Asian Cap… Shri G… http…
 8 Jul 08, 2013 Golden Jubilee Celebration Function of RBSC, Chen… Dr. D.… http…
 9 Jul 05, 2013 Credit Information Companies: Seeking New Frontie… Dr. K.… http…
10 Jun 18, 2013 Impact of Euro Area Crisis on South Asia           Shri D… http…

[[49]]$error
NULL


[[50]]
[[50]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 18, 2013 Achieving Professional Excellence                  Shri P… http…
 2 Jun 11, 2013 Challenges and Concerns of the Central Bank: Oppo… Shri H… http…
 3 Jun 08, 2013 Revving up the Growth Engine through Financial In… Dr. K.… http…
 4 Jun 05, 2013 The Global Financial Crisis and the Indian Financ… Dr. D.… http…
 5 May 24, 2013 Evolving Regulations and Emerging Market Challeng… Shri G… http…
 6 May 18, 2013 Perspectives on Banking in India                   Shri D… http…
 7 May 14, 2013 Strengthening the Banking Supervision through Ris… Dr. K.… http…
 8 May 14, 2013 Presentation on Child and Youth Finance in India … Dr. (S… http…
 9 May 08, 2013 Indian Financial Markets: Fuelling the Growth of … Shri H… http…
10 May 06, 2013 Indian Rural Banking Sector: Big Challenges and t… Dr. (S… http…

[[50]]$error
NULL


[[51]]
[[51]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 30, 2013 Regulation for Financial Consumer Protection: Pre… Dr. K.… http…
 2 Apr 23, 2013 Environmental and Social Sustainability: Key Issu… Dr. K.… http…
 3 Apr 18, 2013 Presentation on Financial Inclusion and Financial… Dr. (S… http…
 4 Apr 18, 2013 Remarks by Dr. Duvvuri Subbarao, Governor, Reserv… Dr. D.… http…
 5 Apr 17, 2013 Talking Points of Dr. Duvvuri Subbarao, Governor,… Dr. D.… http…
 6 Apr 15, 2013 Perspectives on Housing Finance in India           Shri D… http…
 7 Mar 29, 2013 Financial Consumer Protection                      Dr. K.… http…
 8 Mar 28, 2013 Transitioning from Student to Professional Lives:… Dr. K.… http…
 9 Mar 28, 2013 Statistics and the Reserve Bank: Recent Developme… Shri D… http…
10 Mar 25, 2013 Efficacy of Monetary Policy Rules in India         Shri D… http…

[[51]]$error
NULL


[[52]]
[[52]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Mar 20, 2013 Governance in Banks and Financial Institutions     Shri A… http…
 2 Mar 13, 2013 India’s Macroeconomic Challenges Some Reserve Ban… Dr. D.… http…
 3 Mar 12, 2013 Financial Literacy and Financial Inclusion - Indi… Dr. K.… http…
 4 Mar 12, 2013 Closing Remarks by Dr.(Ms) Deepali Pant Joshi, Ex… Dr. (S… http…
 5 Mar 08, 2013 Is There a New Normal for Inflation?               Dr. D.… http…
 6 Mar 06, 2013 Approach to regulation and supervision in the pos… Shri A… http…
 7 Mar 04, 2013 India-OECD-World Bank Regional Conference on Fina… Dr. D.… http…
 8 Mar 04, 2013 India-OECD-World Bank Regional Conference on Fina… Dr. K.… http…
 9 Mar 04, 2013 Vote of Thanks by Shri G. Gopalakrishna, Executiv… Shri G… http…
10 Feb 27, 2013 Role of Financial Market Infrastructure in Financ… Shri G… http…

[[52]]$error
NULL


[[53]]
[[53]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 18, 2013 Indian Banking Sector: Pushing the Boundaries      Dr. K.… http…
 2 Feb 15, 2013 International Seminar on Principles of Financial … Shri G… http…
 3 Feb 14, 2013 Principles of Financial Market Infrastructure & I… Shri H… http…
 4 Feb 11, 2013 Banking as a Fundamental Right of People!          Dr. K.… http…
 5 Feb 04, 2013 What, Why, Who and How of Financial Literacy       Dr. K.… http…
 6 Feb 04, 2013 Regulation of G-Sec & Interest Rate Derivatives M… Shri H… http…
 7 Feb 01, 2013 Regulation of Shadow Banking – Issues and Challen… Shri A… http…
 8 Jan 31, 2013 Indian Inflation Puzzle                            Shri D… http…
 9 Jan 30, 2013 Opening Remarks by Dr. K. C. Chakrabarty, Deputy … Dr. K.… http…
10 Jan 29, 2013 Financial Inclusion of Urban Poor in India         Dr. K.… http…

[[53]]$error
NULL


[[54]]
[[54]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 22, 2013 Reserve Bank of India – Federal Reserve System Ma… "Shri … http…
 2 Jan 21, 2013 The Magical World of Mathematics – The Charm, Cha… "Dr. K… http…
 3 Jan 19, 2013 Welcome Remarks by Dr. Duvvuri Subbarao, Governor… "Dr. D… http…
 4 Jan 19, 2013 Unedited Transcript of the First Suresh D. Tendul… "Prof.… http…
 5 Jan 19, 2013 Webcast of First Suresh Tendulkar Memorial Oration ""      http…
 6 Jan 19, 2013 Vote of Thanks by Dr. K. C. Chakrabarty, Deputy G… "Dr. K… http…
 7 Jan 16, 2013 Free Translation of Governor's Address at the Out… "Dr. D… http…
 8 Jan 10, 2013 Promoting Retail Investor Participation in Govern… "Shri … http…
 9 Jan 03, 2013 Random Payment System Issues of Systemic Relevanc… "Shri … http…
10 Jan 03, 2013 Welcome Remarks by Dr. Duvvuri Subbarao, Governor… "Dr. D… http…

[[54]]$error
NULL


[[55]]
[[55]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 03, 2013 "The 15th C. D. Deshmukh Memorial Lecture on \"A … Joseph… http…
 2 Jan 03, 2013 "Vote of thanks by Shri Deepak Mohanty, Executive… Shri D… http…
 3 Dec 31, 2012 "Contemporary issues in Banking: Reflections on V… Dr. K.… http…
 4 Dec 17, 2012 "Money Market and Monetary Operations in India"    Shri D… http…
 5 Dec 17, 2012 "Technology enabled transformation in the Financi… Shri G… http…
 6 Dec 11, 2012 "Transit Path For Indian Economy: Six Steps For T… Dr. K.… http…
 7 Dec 10, 2012 "Unearned and Unshared Prosperity are Unsustainab… Shri V… http…
 8 Dec 07, 2012 "Perspectives on India’s Balance of Payments"      Shri D… http…
 9 Nov 30, 2012 "Perspectives on Co-operation"                     Shri A… http…
10 Nov 26, 2012 "Financial Inclusion and Payment Systems: Recent … Shri H… http…

[[55]]$error
NULL


[[56]]
[[56]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 23, 2012 Supporting Explosive Growth: Effective Linkages b… Dr. K.… http…
 2 Nov 20, 2012 Managing Capital Flows                             Shri D… http…
 3 Nov 20, 2012 G 20 and India                                     Dr. D.… http…
 4 Nov 16, 2012 Leveraging Cooperative Advantage                   Dr. D.… http…
 5 Nov 12, 2012 The Financial Innovations That Never Were          Shri V… http…
 6 Nov 09, 2012 Financial Inclusion – Issues in Measurement and A… Dr. K.… http…
 7 Nov 09, 2012 The Importance of Inflation Expectations           Shri D… http…
 8 Oct 25, 2012 Financial Regulatory Reforms                       Shri A… http…
 9 Oct 23, 2012 Technology in the Financial Sector- Some Issues a… Shri G… http…
10 Oct 22, 2012 Gauging the Potential of Emerging Markets – Can g… Shri A… http…

[[56]]$error
NULL


[[57]]
[[57]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 18, 2012 Social Banking and Finance – Opportunities in Inc… Dr. K.… http…
 2 Oct 18, 2012 Managing Currency and Interest Rate Risks – New C… Shri H… http…
 3 Oct 15, 2012 Corporate Debt Market: Developments, Issues & Cha… Shri H… http…
 4 Oct 10, 2012 Welcoming Ben Bernanke                             Dr. D.… http…
 5 Oct 09, 2012 Strengthening SMEs Capabilities for Global Compet… Dr. K.… http…
 6 Oct 09, 2012 Techno - Banking – Prospects and Challenges        Shri G… http…
 7 Oct 09, 2012 Silver Linings in the Indian Economy               Shri H… http…
 8 Sep 27, 2012 Achieving Inclusive Growth: The Challenge of a Ne… Dr. D.… http…
 9 Sep 23, 2012 Food Inflation and Agricultural Supply Chain Mana… Shri H… http…
10 Sep 21, 2012 Underlying Concepts and Principles of Dynamic Pro… Shri B… http…

[[57]]$error
NULL


[[58]]
[[58]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 20, 2012 Role of State in Developing Debt Markets           Shri H… http…
 2 Sep 17, 2012 Indian Economy: Imperatives for Second Generation… Dr. K.… http…
 3 Sep 13, 2012 Highlights and Rationale of the Recommendations o… Shri B… http…
 4 Sep 12, 2012 Alternate Payment Channels- Prepaid cards-Issues … Shri G… http…
 5 Sep 11, 2012 Financial Stability: 2007 to 2012 - Five years on  Shri A… http…
 6 Sep 05, 2012 Turmoil in Global Economy: The Indian Perspectives Shri H… http…
 7 Sep 05, 2012 Customising mobile banking in India: issues & cha… Shri H… http…
 8 Sep 05, 2012 Revised Guidelines on Priority Sector Lending: Ra… Dr. K.… http…
 9 Sep 04, 2012 Basel III in International and Indian Contexts Te… Dr. D.… http…
10 Sep 03, 2012 CRR is a cost, manage it: Chakrabarty tells SBI    Dr. K.… http…

[[58]]$error
NULL


[[59]]
[[59]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 31, 2012 Economic and Financial Developments in Uttarakhand Shri D… http…
 2 Aug 29, 2012 India in a Globalizing World : Some Policy Dilemm… Dr. D.… http…
 3 Aug 28, 2012 Perspectives on Risk and Governance                Shri A… http…
 4 Aug 28, 2012 India’s Post-Crisis Macroeconomic Challenges       Shri D… http…
 5 Aug 24, 2012 Turmoil in Global Economy: The Indian Perspective  Shri H… http…
 6 Aug 20, 2012 Economic and Financial Developments in Odisha      Shri D… http…
 7 Aug 20, 2012 Goa to Goa- Changed contours of the Indian Forex … Shri G… http…
 8 Aug 13, 2012 Corporate Debt Restructuring- Issues and Way Forw… Dr. K.… http…
 9 Aug 07, 2012 The First Mile Walk into Financial Inclusion – Th… Dr. K.… http…
10 Aug 03, 2012 Indian Payment and Settlement Systems Responsible… Dr. D.… http…

[[59]]$error
NULL


[[60]]
[[60]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jul 30, 2012 Managing currency risk in the new normal           Shri G… http…
 2 Jul 23, 2012 Issues and Challenges in Financial Inclusion: Pol… Shri H… http…
 3 Jul 19, 2012 Small is still Beautiful and Competitive – Reflec… Shri A… http…
 4 Jul 19, 2012 Remembering Dr. I G Patel                          Dr. D.… http…
 5 Jul 18, 2012 On Leadership Skills                               Shri V… http…
 6 Jul 17, 2012 Statistics in the Reserve Bank of India            Shri D… http…
 7 Jul 17, 2012 Statistics and Statistical Analysis in RBI’s Work  Dr. D.… http…
 8 Jul 16, 2012 Issues in IT Governance                            Shri G… http…
 9 Jul 13, 2012 Global Convergence of Banking Regulations and its… Shri G… http…
10 Jul 12, 2012 Issues and Challenges in Financial Inclusion : Po… Shri H… http…

[[60]]$error
NULL


[[61]]
[[61]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jul 12, 2012 Agricultural Credit - Accomplishments and Challen… Dr. D.… http…
 2 Jul 11, 2012 Launch of the OTC Derivatives Trade Repository     Dr. Su… http…
 3 Jul 04, 2012 Touching Hearts and Spreading Smiles               Dr. D.… http…
 4 Jul 03, 2012 IT and Governance in Banks - Some thoughts         Shri A… http…
 5 Jun 28, 2012 ICT Based Financial Inclusion - Carving a New pat… Dr. K.… http…
 6 Jun 27, 2012 Price Stability and Financial Stability An Emergi… Shri D… http…
 7 Jun 20, 2012 Responsible Innovation in Finance                  Shri G… http…
 8 Jun 19, 2012 India - Macroeconomic Situation Assessment and Pr… Dr. D.… http…
 9 Jun 08, 2012 Financial Inclusion - A Update                     Dr. K.… http…
10 Jun 06, 2012 Exploring the challenge of financial education ac… Dr. K.… http…

[[61]]$error
NULL


[[62]]
[[62]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 04, 2012 Human Resource Management in Banks – Need for a n… Dr. K.… http…
 2 Apr 27, 2012 Strengthening Governance in Microfinance Institut… Shri A… http…
 3 Apr 24, 2012 Remarks by Dr. K. C. Chakrabarty, Deputy Governor… Dr. K.… http…
 4 Apr 13, 2012 Enabling Affordable Housing for All – Issues & Ch… Shri H… http…
 5 Apr 12, 2012 Empowering the Growth of Emerging Enterprises      Dr. K.… http…
 6 Apr 11, 2012 Musings on FEDAI, Forex Market and Indian Rupee    Shri H… http…
 7 Apr 09, 2012 Learning from the Crisis                           Dr. D.… http…
 8 Apr 09, 2012 The Great Depression and the Great Recession: Wha… Prof. … http…
 9 Apr 03, 2012 Systemic risk assessment – The cornerstone for th… Dr. K.… http…
10 Mar 30, 2012 The Challenge of Globalization Some Reflections f… Dr. D.… http…

[[62]]$error
NULL


[[63]]
[[63]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Mar 29, 2012 M - Banking in India - Regulations and Rationale   Dr. K.… http…
 2 Mar 28, 2012 Towards Vibrant Debt Markets – A 7iFramework       Shri H… http…
 3 Mar 23, 2012 Uses and Misuses of Statistics                     Dr. K.… http…
 4 Mar 20, 2012 Changing Contours of Global Crisis- Impact on Ind… Shri A… http…
 5 Mar 19, 2012 Statistics and the Reserve Bank: Some Reflections  Shri D… http…
 6 Mar 13, 2012 Striking a Balance: Credit Penetration and NPA Ma… Shri A… http…
 7 Mar 05, 2012 The Framework for Pre-Empting Systemic Financial … Shri V… http…
 8 Mar 03, 2012 Outward Indian FDI – Recent Trends & Emerging Iss… Shri H… http…
 9 Mar 03, 2012 Implications of Basel III for Capital, Liquidity … Shri B… http…
10 Feb 27, 2012 BCSBI, Customer Service and Consumer Protection-I… Dr. K.… http…

[[63]]$error
NULL


[[64]]
[[64]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 27, 2012 Agriculture Agenda for Odisha – Issues & Challeng… "Shri … http…
 2 Feb 17, 2012 Indian Banking Sector: Towards the Next Orbit      "Dr. K… http…
 3 Feb 17, 2012 Moving towards technology led excellence in banki… "Shri … http…
 4 Feb 17, 2012 Governance deficit and financial crisis            "Shri … http…
 5 Feb 13, 2012 The Reserve Bank of India: Pulling every lever#    ""      http…
 6 Feb 07, 2012 Understanding Psychology for Responsible Financia… "Shri … http…
 7 Feb 06, 2012 Empowering MSMEs for Financial Inclusion and Grow… "Dr. K… http…
 8 Feb 02, 2012 New Trilemma in Central Banking                    "Shri … http…
 9 Feb 01, 2012 International Research Conference and its Relevan… "Dr. S… http…
10 Feb 01, 2012 Price Stability, Financial Stability and Sovereig… "Dr. D… http…

[[64]]$error
NULL


[[65]]
[[65]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 31, 2012 Indian Banking- Journey into the Future*           Shri A… http…
 2 Jan 30, 2012 Global Capital Flows and the Indian Economy: Oppo… Shri D… http…
 3 Jan 27, 2012 “Towards Vibrant Debt Markets” - A presentation b… Shri H… http…
 4 Jan 21, 2012 The Global Financial Crisis : New Awakening        Shri B… http…
 5 Jan 16, 2012 Crisis Preparedness in Interconnected Markets - P… Dr. K.… http…
 6 Jan 16, 2012 Infrastructure Financing in India – Progress & Pr… Shri H… http…
 7 Jan 11, 2012 Financial Inclusion and Urban Cooperative Banks    Shri A… http…
 8 Jan 09, 2012 Banking Sector – Maintaining Resilience to Risk a… Dr. K.… http…
 9 Jan 09, 2012 Evolving Customer friendly Payment Systems in Ind… Shri G… http…
10 Jan 09, 2012 The Shrinking Money and RBI’s Monetary Policy      Shri H… http…

[[65]]$error
NULL


[[66]]
[[66]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 06, 2012 Reflections on Leaders and Leadership1             Dr. D.… http…
 2 Jan 06, 2012 Financial Market Volatility and the Risk Manageme… Shri V… http…
 3 Dec 26, 2011 Short Term Cooperative Credit Structure and Finan… Shri V… http…
 4 Dec 26, 2011 Financial Reporting in the context of Financial S… Shri A… http…
 5 Dec 26, 2011 Legislative Reforms- Strengthening Banking Sector  Shri A… http…
 6 Dec 23, 2011 Economic and Financial Developments in Andaman an… Shri D… http…
 7 Dec 20, 2011 Empowering MSMEs for Financial Inclusion and Grow… Dr. K.… http…
 8 Dec 16, 2011 Challenges to the Accounting Profession Some Refl… Dr. D.… http…
 9 Dec 14, 2011 Ten Commandments for a Successful Banking Career1  Dr. K.… http…
10 Dec 13, 2011 Gross Financial Flows, Global Imbalances, and Cri… Dr. D.… http…

[[66]]$error
NULL


[[67]]
[[67]]$result
NULL

[[67]]$error
<error/tibble_error_incompatible_size>
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 10: Existing data.
• Size 9: Column `link`.
ℹ Only values of size one are recycled.
---
Backtrace:
     ▆
  1. └─purrr::map(link_pages, safely(get_speech_details))
  2.   └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
  3.     ├─purrr:::with_indexed_errors(...)
  4.     │ └─base::withCallingHandlers(...)
  5.     ├─purrr:::call_with_cleanup(...)
  6.     └─purrr (local) .f(.x[[i]], ...)
  7.       ├─purrr:::capture_error(.f(...), otherwise, quiet)
  8.       │ └─base::tryCatch(...)
  9.       │   └─base (local) tryCatchList(expr, classes, parentenv, handlers)
 10.       │     └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
 11.       │       └─base (local) doTryCatch(return(expr), name, parentenv, handler)
 12.       └─global .f(...)
 13.         └─tibble::tibble(...)


[[68]]
[[68]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 15, 2011 Presentation by Jaime Caruana - General Manager, … Jaime … http…
 2 Nov 15, 2011 Financial Regulation for Growth, Equity and Stabi… Dr. D.… http…
 3 Nov 15, 2011 Financial Sector Regulation for Growth, Equity an… Jaime … http…
 4 Nov 14, 2011 Bank Resolution Framework Challenges in the India… Dr. D.… http…
 5 Nov 14, 2011 Financial Inclusion and Financial Stability : Are… Shri H… http…
 6 Nov 14, 2011 Post-Crisis: The New Normal                        Dr. K.… http…
 7 Nov 14, 2011 Getting ‘IT' Right                                 Shri G… http…
 8 Nov 11, 2011 Convergence of Mobile Banking, Financial Inclusio… Dr. K.… http…
 9 Nov 08, 2011 Gearing up for the Competitive Impulse in the Ind… Dr. K.… http…
10 Nov 03, 2011 Growth, Resilience and Reform: Reflections on Pos… Dr. Su… http…

[[68]]$error
NULL


[[69]]
[[69]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 31, 2011 Economic and Financial Developments in Goa         Shri D… http…
 2 Oct 19, 2011 Inflation | Decoding the Dynamics                  Shri D… http…
 3 Oct 19, 2011 Identifying Systemic Risk in Global Markets – Les… Shri V… http…
 4 Oct 14, 2011 Financial Inclusion and Banks : Issues and Perspe… Dr. K.… http…
 5 Oct 12, 2011 Financial Inclusion | A road India needs to travel Dr. K.… http…
 6 Oct 10, 2011 Monetary Policy: Key factors Shaping Trajectory    Dr. Su… http…
 7 Oct 07, 2011 Welcome Remarks by Dr. D. Subbarao, RBI Governor … Dr. D.… http…
 8 Sep 28, 2011 Central Banking in the Post Crisis Era: Experienc… Shri H… http…
 9 Sep 28, 2011 Indian Economy: Progress and Prospects             Shri D… http…
10 Sep 27, 2011 Monetary Policy Dilemmas: Some RBI Perspectives    Dr. D.… http…

[[69]]$error
NULL


[[70]]
[[70]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 24, 2011 Intervention by Dr. D. Subbarao, Governor, Reserv… Dr. D.… http…
 2 Sep 22, 2011 Impact of Global Financial Crisis on Financial Co… Dr. K.… http…
 3 Sep 07, 2011 Financial Inclusion                                Dr. K.… http…
 4 Sep 03, 2011 Towards making Right to Information Act More Mean… Shri V… http…
 5 Sep 03, 2011 Monetary Policy Response to Recent Inflation in I… Shri D… http…
 6 Sep 02, 2011 Agricultural Productivity and Credit- Issues and … Dr. K.… http…
 7 Aug 29, 2011 Reflections on Regulatory Challenges and Dilemmas  Shri A… http…
 8 Aug 25, 2011 Banking, electronic payments and road ahead        Shri H… http…
 9 Aug 23, 2011 Corporate Governance of Banks in India In Pursuit… Dr. D.… http…
10 Aug 13, 2011 Changing Inflation Dynamics in India               Shri D… http…

[[70]]$error
NULL


[[71]]
[[71]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 13, 2011 Forex market development-Issues and Challenges -T… Shri G… http…
 2 Aug 12, 2011 Technology in Banking- In Pursuit of Excellence    Shri A… http…
 3 Aug 12, 2011 How does the Reserve Bank of India Conduct its Mo… Shri D… http…
 4 Aug 05, 2011 Indian Education System – Issues and Challenges    Dr. K.… http…
 5 Jul 29, 2011 Secured Online Banking Vs. Customer Convenience –… Shri G… http…
 6 Jul 08, 2011 Economic Reforms for Sustainable Growth            Dr. Su… http…
 7 Jul 07, 2011 Mutual Funds and Market Development in India       Dr. Su… http…
 8 Jul 07, 2011 Striking the Balance between Growth and Inflation… Dr. Su… http…
 9 Jul 05, 2011 Statistics in the Reserve Bank of India            Shri D… http…
10 Jul 05, 2011 Statistics in the World of RBI - Duvvuri Subbarao  Dr. D.… http…

[[71]]$error
NULL


[[72]]
[[72]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 30, 2011 Challenges for Next Generation Banking             Dr. K.… http…
 2 Jun 28, 2011 Connecting The Dots                                Dr. K.… http…
 3 Jun 23, 2011 India and the Global Financial Crisis What Have W… Dr. D.… http…
 4 Jun 17, 2011 Challenges and Opportunities in a Trillion Dollar… Dr. K.… http…
 5 Jun 15, 2011 Macroprudential Policies: Indian Experience        Shri A… http…
 6 Jun 10, 2011 'Financial Stability : The Indian Experience' pre… Smt. S… http…
 7 Jun 10, 2011 Financial Stability: Some Issues                   Dr. Y.… http…
 8 Jun 10, 2011 Financial Stability Mandate of Central Banks Issu… Dr. D.… http…
 9 Jun 10, 2011 Welcome remarks by Dr. Subir Gokarn, Deputy Gover… Dr. Su… http…
10 Jun 10, 2011 Monetary policy in a world with macroprudential p… Jaime … http…

[[72]]$error
NULL


[[73]]
[[73]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 10, 2011 Wrap up and Concluding Remarks                     Shri D… http…
 2 Jun 06, 2011 Non-financial Reporting – What, Why and How - Ind… Dr. K.… http…
 3 Jun 02, 2011 A presentation on ‘Financial Inclusion - Achievem… Dr. K.… http…
 4 Jun 01, 2011 Talent Acquisition and Management                  Dr. K.… http…
 5 May 31, 2011 Banking on Technology                              Shri A… http…
 6 May 10, 2011 Policy Discipline and Spillovers in an Inter-conn… Dr. D.… http…
 7 May 09, 2011 Regulatory Perspectives on Derivatives Markets in… Dr. Su… http…
 8 May 09, 2011 Central Bank Governance Issues : Some RBI Perspec… Dr. D.… http…
 9 Apr 17, 2011 Global Challenges, Global Solutions: Some Remarks  Dr. D.… http…
10 Apr 17, 2011 Statement by Mr. Duvvuri Subbarao, Governor, Rese… Dr. D.… http…

[[73]]$error
NULL


[[74]]
[[74]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 16, 2011 The Global Economy and Framework                   Dr. D.… http…
 2 Apr 05, 2011 Linking Entrepreneurship with Credit- The Role of… Dr. K.… http…
 3 Apr 05, 2011 Sustainability of Economic Growth and Controlling… Dr. Su… http…
 4 Apr 01, 2011 Lessons for Monetary Policy from the Global Finan… Shri D… http…
 5 Mar 29, 2011 Frontier Issues on the Global Agenda Emerging Eco… Dr. D.… http…
 6 Mar 28, 2011 Financial Inclusion: A Consumer Centric View       Dr. Su… http…
 7 Mar 24, 2011 Economic and Financial Developments in the North-… Shri D… http…
 8 Mar 16, 2011 Banking and Beyond: New Challenges before Indian … Dr. K.… http…
 9 Feb 24, 2011 The Reserve Bank of India Making a Difference in … Dr. D.… http…
10 Feb 21, 2011 Approach to Capital Account Management - Shifting… Smt. S… http…

[[74]]$error
NULL


[[75]]
[[75]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 18, 2011 Beyond CBS : Fast Forward to Banking 2.0!          Dr. K.… http…
 2 Feb 14, 2011 Introduction of IFRS- Issues and Challenges        Dr. K.… http…
 3 Feb 11, 2011 Welcome Remarks by the Governor at the Third P. R… Dr. D.… http…
 4 Jan 31, 2011 Implications of the Expansion of Central Bank Bal… Dr. D.… http…
 5 Jan 19, 2011 Emerging Trends in Payment Systems and Challenges  Dr. K.… http…
 6 Jan 10, 2011 Centrality of banks in the financial system        Smt. S… http…
 7 Jan 07, 2011 Dilemmas in Central Bank Communication: Some Refl… Dr. D.… http…
 8 Dec 16, 2010 ASEM Conference on ‘Investment and its Financing:… Shri D… http…
 9 Dec 10, 2010 Prospects for Economic Growth and the Policy Impe… Dr. K.… http…
10 Dec 09, 2010 Monetary Policy Considerations after the Crisis: … Dr. Su… http…

[[75]]$error
NULL


[[76]]
[[76]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Dec 08, 2010 Mint Road Milestones - Remarks of Dr. Duvvuri Sub… Dr. D.… http…
 2 Dec 03, 2010 Five Frontier Issues in Indian Banking             Dr. D.… http…
 3 Nov 29, 2010 Inclusive Growth – Role of Financial Sector        Dr. K.… http…
 4 Nov 23, 2010 Remarks by Smt Shyamala Gopinath, DG, RBI at the … Smt. S… http…
 5 Nov 15, 2010 Developing the Humanware to Improve Customer Serv… Dr. K.… http…
 6 Nov 01, 2010 G-20 After the Crisis: An Indian Perspective       Dr. Su… http…
 7 Oct 27, 2010 Frontier Issues on the Global Agenda Need for Glo… Dr. D.… http…
 8 Oct 26, 2010 The Price of Protein                               Dr. Su… http…
 9 Oct 26, 2010 Presentation by Dr. Subir Gokarn, DG, RBI - The P… Dr. Su… http…
10 Oct 10, 2010 Emerging Market Economies Leading Global Growth    Dr. D.… http…

[[76]]$error
NULL


[[77]]
[[77]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 05, 2010 Managing the Growth-Inflation Balance in India : … Dr. Su… http…
 2 Oct 05, 2010 Presentation by Dr. Subir Gokarn, DG, RBI - Manag… Dr. Su… http…
 3 Oct 01, 2010 Perspectives on Inflation in India                 Shri D… http…
 4 Sep 20, 2010 Dilemmas in Central Banking - Foundation Day Lect… Dr. D.… http…
 5 Sep 20, 2010 Perspectives on Financial Sector Strategy          Dr. Su… http…
 6 Sep 15, 2010 Macro-prudential Approach to Regulation - Scope a… Smt. S… http…
 7 Sep 09, 2010 Banking Transactions in the Next Decade: Faster, … Dr. K.… http…
 8 Sep 09, 2010 Preparing Indian Banks for Global Competitiveness… Dr. Su… http…
 9 Sep 08, 2010 Key Note Address at the Panel Session on “Setting… Smt. U… http…
10 Sep 07, 2010 Post-Crisis Reforms to Banking Regulation and Sup… Dr. D.… http…

[[77]]$error
NULL


[[78]]
[[78]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 03, 2010 Technology in Banking : An Instrument for Economi… Dr. K.… http…
 2 Aug 27, 2010 Economic Crisis and Crisis in Economics Some Refl… Dr. D.… http…
 3 Aug 12, 2010 Managing Inflation in the Post-Crisis Environment  Dr. Su… http…
 4 Aug 10, 2010 Securitisation Markets in India – A Post-Crisis P… Smt. S… http…
 5 Aug 05, 2010 Financial Crisis - Some Old Questions and Maybe S… Dr. D.… http…
 6 Jul 28, 2010 Over-the-counter derivative markets in India issu… Smt. S… http…
 7 Jul 02, 2010 Central Banks must distill Lessons from the Globa… Dr. D.… http…
 8 Jul 02, 2010 Banking Technology Beyond CBS- Issues and Way For… Dr. K.… http…
 9 Jun 18, 2010 Financial Deepening by putting Financial Inclusio… Dr. K.… http…
10 Jun 18, 2010 Harnessing Technology to Bank the Unbanked         Dr. D.… http…

[[78]]$error
NULL


[[79]]
[[79]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 14, 2010 Perspectives on Lending Rates in India             Shri D… http…
 2 Jun 07, 2010 Financial Regulation and Financial Inclusion – Wo… Smt. U… http…
 3 Jun 01, 2010 RBI Archives - Way Forward                         Dr. D.… http…
 4 May 21, 2010 Bank Credit to MSMEs: Present Status and Way Forw… Dr. K.… http…
 5 May 12, 2010 Volatility in Capital Flows: Some Perspectives     Dr. D.… http…
 6 Apr 30, 2010 Key note Address by Dr K.C.Chakrabarty, Deputy Go… Dr. K.… http…
 7 Apr 27, 2010 India and the Global Financial Crisis Transcendin… Dr. D.… http…
 8 Apr 26, 2010 New Paradigms in IT Security in Indian Banks       Dr. K.… http…
 9 Apr 25, 2010 Statement by Mr. Duvvuri Subbarao, Governor, Rese… Dr. D.… http…
10 Apr 15, 2010 The Economics of Ecosystems and Biodiversity (TEE… Smt. U… http…

[[79]]$error
NULL


[[80]]
[[80]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 06, 2010 V K Sharma: Launch of the Financial Literacy Proj… Shri V… http…
 2 Apr 02, 2010 Silver Jubilee function of Institute of Banking P… Dr. K.… http…
 3 Apr 01, 2010 Platinum Jubilee Celebrations of the Reserve Bank… Shri P… http…
 4 Apr 01, 2010 People, Jobs and Productivity: The 'Simple' Dynam… Dr. Su… http…
 5 Apr 01, 2010 Hon’ble Prime Minister, Dr. Manmohan Singh’s Addr… Dr. Ma… http…
 6 Apr 01, 2010 Looking Back and Looking Ahead Reserve Bank of In… Dr. D.… http…
 7 Mar 22, 2010 Joint Function of RBI and Government of Karnataka… Dr. D.… http…
 8 Mar 22, 2010 Some Issues in Currency Management                 Dr. D.… http…
 9 Mar 22, 2010 Speech of Finance Minister Foundation Laying Cere… Shri P… http…
10 Mar 22, 2010 RBI-OECD Workshop Delivering Financial Literacy: … Dr. K.… http…

[[80]]$error
NULL


[[81]]
[[81]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Mar 22, 2010 Welcome address of Shri V.K.Sharma, Executive Dir… Shri V… http…
 2 Mar 22, 2010 Financial Education: Worthy and Worthwhile         Dr. D.… http…
 3 Mar 22, 2010 RBI-OECD Workshop on Financial Literacy at Bangal… Shri P… http…
 4 Mar 22, 2010 Vote of Thanks Speech by Shri V. K. Sharma, Execu… Shri V… http…
 5 Mar 22, 2010 Banknote Paper Mill at Mysore                      Smt. U… http…
 6 Mar 15, 2010 Implementation of Monetary Policy in India         Shri D… http…
 7 Mar 04, 2010 Indian Perspective on Banking Regulation           Smt. U… http…
 8 Mar 04, 2010 Inflation Dynamics in India: Issues and Concerns   Shri D… http…
 9 Mar 02, 2010 Pursuit of Complete Markets – The Missing Perspec… Smt. S… http…
10 Mar 02, 2010 Monetary Policy Framework in India: Experience wi… Shri D… http…

[[81]]$error
NULL


[[82]]
[[82]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 24, 2010 Welcome Remarks by Dr. D. Subbarao, Governor, Res… "Dr. D… http…
 2 Feb 24, 2010 Lessons from the Financial Crisis for Monetary Po… "Prof.… http…
 3 Feb 15, 2010 “After the Crises: Assessing the Costs and Benefi… "Lord … http…
 4 Feb 15, 2010 Welcome remarks by Dr. D. Subbarao, Governor, Res… "Dr. D… http…
 5 Feb 12, 2010 Challenges for Central Banks in the Context of th… "Dr. D… http…
 6 Feb 12, 2010 First International Research Conference - Transcr… "Dr. D… http…
 7 Feb 12, 2010 First International Research Conference - Webcast  ""      http…
 8 Feb 12, 2010 Challenges to Central Banking in the Context of F… "Shri … http…
 9 Feb 12, 2010 First International Research Conference : Present… "Andre… http…
10 Feb 09, 2010 The Global Financial Crisis: Genesis, Impact and … "Shri … http…

[[82]]$error
NULL


[[83]]
[[83]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 05, 2010 Infrastructure Finance: Experiences and the Road … Dr. Su… http…
 2 Feb 03, 2010 V K Sharma: Affordable Housing and Housing Finance V K Sh… http…
 3 Jan 19, 2010 Financial Development and Deposit Insurance: Some… Dr. Su… http…
 4 Jan 18, 2010 Funding of Deposit Insurance Systems               Smt. U… http…
 5 Jan 18, 2010 International Conference Funding of Deposit Insur… Dr. D.… http…
 6 Jan 16, 2010 Commemorative Stamp Release by the President Gove… Dr. D.… http…
 7 Jan 16, 2010 Speech by Her Excellency the President of India, … Shrima… http…
 8 Jan 16, 2010 Speech by Shri Namo Narain Meena, Hon’ble Ministe… Shri N… http…
 9 Jan 16, 2010 Speech by Shri Gurudas Kamat, Hon’ble Minister of… Shri G… http…
10 Jan 16, 2010 Speech by Shri Pranab Mukherjee, Hon’ble Finance … Shri P… http…

[[83]]$error
NULL


[[84]]
[[84]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 15, 2010 Book Release by the Prime Minister ‘Perspectives … Dr. D.… http…
 2 Jan 14, 2010 Measures of Inflation in India: Issues and Perspe… Shri D… http…
 3 Jan 12, 2010 Risk Management - Priorities for the Indian Banki… Smt. U… http…
 4 Jan 04, 2010 Financial Markets – Some Regulatory Issues and Re… Smt. S… http…
 5 Dec 30, 2009 India's Economic Recovery : Drivers and Risks - S… Dr. Su… http…
 6 Dec 29, 2009 Current Macroeconomic Developments in India        Smt. S… http…
 7 Dec 09, 2009 Financial Inclusion : Challenges and Opportunities Dr. D.… http…
 8 Dec 04, 2009 Mobile Commerce, Mobile Banking - The Emerging Pa… Dr. K.… http…
 9 Nov 30, 2009 Furthering Financial Inclusion through Financial … Dr. K.… http…
10 Nov 27, 2009 Emerging blueprint for prudential regulation - As… Smt. S… http…

[[84]]$error
NULL


[[85]]
[[85]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 26, 2009 GenNext Banking : Issues and Perspectives          Dr. K.… http…
 2 Nov 25, 2009 Should Banking Be Made Boring? - An Indian Perspe… Dr. D.… http…
 3 Nov 12, 2009 Global Financial Crisis and Monetary Policy Respo… Shri D… http…
 4 Nov 10, 2009 Financial Crisis and Beyond                        Smt. S… http…
 5 Nov 03, 2009 Philosophy and practice of financial sector regul… Smt. S… http…
 6 Oct 30, 2009 Changing Dynamics of Legal Risks in Financial Sec… Smt. S… http…
 7 Oct 16, 2009 Learning from Crises                               Smt. U… http…
 8 Oct 05, 2009 Emerging Market Concerns: An Indian Perspective    Dr. D.… http…
 9 Sep 29, 2009 Global Crisis: Genesis, Challenges and Opportunit… Dr. K.… http…
10 Sep 22, 2009 V K Sharma: Supervising in a Crisis Environment    Shri V… http…

[[85]]$error
NULL


[[86]]
[[86]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 11, 2009 Sustaining growth potential – Focus on key Sectors "Smt. … http…
 2 Sep 10, 2009 Financial Stability: Issues and Challenges         "Dr. D… http…
 3 Sep 08, 2009 Global Agenda for Regulatory and Supervisory Refo… "Smt. … http…
 4 Sep 07, 2009 India’s Economic Transformation - A Snapshot       "Dr. K… http…
 5 Sep 04, 2009 Policy Lessons from the Global Financial Crisis    "Shri … http…
 6 Aug 31, 2009 Banking and Finance in India: Developments, Issue… "Dr. K… http…
 7 Aug 28, 2009 Ethics and the World of Finance                    "Dr. D… http…
 8 Aug 19, 2009 V K Sharma: The International Financial Crisis an… "Shri … http…
 9 Aug 14, 2009 Panel Discussion on 'Challenges for the Central B… ""      http…
10 Aug 13, 2009 Banking: Key Driver for Inclusive Growth           "Dr. K… http…

[[86]]$error
NULL


[[87]]
[[87]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 10, 2009 Technology, Financial Inclusion and Role of Urban… Dr. K.… http…
 2 Jul 31, 2009 Global Financial Crisis Questioning the Questions  Dr. D.… http…
 3 Jul 17, 2009 Pushing Financial Inclusion – Issues, Challenges … Dr. K.… http…
 4 Jul 11, 2009 Impact of global financial crisis on Reserve Bank… Smt. U… http…
 5 Jul 02, 2009 Inaugural address delivered by Dr. D. Subbarao, G… Dr. D.… http…
 6 Jun 29, 2009 Sub-national Fiscal Reforms and Debt Management -… Smt. S… http…
 7 Jun 15, 2009 Addressing the Regulatory Perimeter Issues – Indi… Smt. S… http…
 8 Jun 10, 2009 Emerging Contours of Financial Regulation : Chall… Dr. Ra… http…
 9 May 22, 2009 Risk Management in the Midst of the Global Financ… Dr. D.… http…
10 May 18, 2009 Information Technology and Banking – A Continuing… Dr. D.… http…

[[87]]$error
NULL


[[88]]
[[88]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 25, 2009 Statement by Mr. Duvvuri Subbarao, Alternate Gove… Dr. D.… http…
 2 Apr 23, 2009 Global Financial Crisis : Causes, Impact, Policy … Dr. Ra… http…
 3 Apr 21, 2009 V K Sharma: Issues in Capital account Convertibil… Shri V… http…
 4 Apr 02, 2009 Platinum Jubilee Celebrations - Governor’s Addres… Dr. D.… http…
 5 Mar 26, 2009 India - Managing the Impact of the Global Financi… Dr. D.… http…
 6 Mar 23, 2009 Technology in Banks – Responding to the Emerging … Smt. S… http…
 7 Mar 19, 2009 Retail Payments : Perspectives and Way Forward     Dr. D.… http…
 8 Mar 17, 2009 Retail Payment Systems – Select Issues             Smt. S… http…
 9 Mar 03, 2009 Lessons for Financial Policymaking - Interpreting… Smt. S… http…
10 Feb 18, 2009 Impact of the Global Financial Crisis on India Co… Dr. D.… http…

[[88]]$error
NULL


[[89]]
[[89]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 13, 2009 Some Reflections on the recent global financial t… Smt. S… http…
 2 Dec 18, 2008 The Global Financial Turmoil and Challenges for t… Dr. D.… http…
 3 Dec 04, 2008 Mitigating Spillovers and Contagion Lessons from … Dr. D.… http…
 4 Nov 25, 2008 Contemporary International and Domestic Banking D… Shri V… http…
 5 Nov 21, 2008 V K Sharma: Genesis, Diagnosis and Prognosis of t… Shri V… http…
 6 Oct 12, 2008 Lessons from the Global Financial Crisis with spe… Dr. D.… http…
 7 Oct 10, 2008 Global Financial Crisis and Key Risks: Impact on … Dr. Ra… http…
 8 Sep 12, 2008 Financial Inclusion and Information Technology     Smt. U… http…
 9 Aug 29, 2008 Remarks by Smt. Shyamala Gopinath, on the launch … Smt. S… http…
10 Aug 04, 2008 The Indian Banking Industry – A Retrospect of Sel… Shri V… http…

[[89]]$error
NULL


[[90]]
[[90]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 01, 2008 Payment and Settlement System in India             Shri V… http…
 2 Jul 04, 2008 Global Financial Turbulence and Financial Sector … Dr. Y.… http…
 3 Jul 02, 2008 Monetary and Regulatory Policies: How to Get the … Dr. Y.… http…
 4 Jun 27, 2008 The Virtues and Vices of Talking About Monetary P… Dr. Y.… http…
 5 Jun 19, 2008 Fiscal Policy and Economic Reforms                 Dr. Y.… http…
 6 Jun 05, 2008 Agriculture: Emerging Issues and Possible Approac… Dr. Y.… http…
 7 Jun 02, 2008 Inclusive financial system for the aged            Smt. U… http…
 8 Jun 02, 2008 Ensuring Dignity for Indian Customer : Task Ahead… Smt. U… http…
 9 May 20, 2008 Indian Economy: Prospects for Growth with Stabili… Dr. Y.… http…
10 Apr 19, 2008 The Role of Fiscal and Monetary Policies in Susta… Dr. Ra… http…

[[90]]$error
NULL


[[91]]
[[91]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 17, 2008 Consolidation in the Indian Financial Sector       Shri V… http…
 2 Apr 16, 2008 India : The Global Partner                         Dr. Y.… http…
 3 Apr 15, 2008 Government-owned Investment Vehicles and Capital … Dr. Y.… http…
 4 Apr 10, 2008 Banks' Relationship with Customers - Evolving Per… Smt. S… http…
 5 Mar 31, 2008 The Indian Economy and the Reserve Bank of India:… Dr. Y.… http…
 6 Mar 28, 2008 Innovation and Growth: Role of the Financial Sect… Dr. Ra… http…
 7 Mar 07, 2008 Financial Globalisation, Growth and Stability: An… Dr. Y.… http…
 8 Feb 28, 2008 Inclusive Growth - The Role of Banks in Emerging … Smt. U… http…
 9 Feb 14, 2008 The Growth Record of the Indian Economy, 1950-200… Dr. Ra… http…
10 Feb 01, 2008 Capital Flows to India                             Dr. Ra… http…

[[91]]$error
NULL


[[92]]
[[92]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 27, 2008 Financial Markets in India Recent Developments an… Smt. S… http…
 2 Jan 21, 2008 Development through Planning, Markets or De-centr… Smt. S… http…
 3 Jan 03, 2008 Some Comments on Macro-Stability in Indian Economy Dr. Y.… http…
 4 Jan 03, 2008 Management of the Capital Account in India: Some … Dr. Y.… http…
 5 Dec 04, 2007 India's Financial Sector Reforms: Fostering Growt… Dr. Ra… http…
 6 Dec 04, 2007 Central Banking and Academia                       Dr. Y.… http…
 7 Dec 04, 2007 The Rise of Asia – Implications for the Global Ec… Dr. Y.… http…
 8 Nov 27, 2007 Global Developments and Indian Perspectives: Some… Dr. Y.… http…
 9 Nov 26, 2007 The Evolution of Banking Regulation in India – A … Shri V… http…
10 Nov 26, 2007 The growing importance of emerging economies in t… Jean-C… http…

[[92]]$error
NULL


[[93]]
[[93]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 23, 2007 Setting the Pace                                   Shri V… http…
 2 Nov 16, 2007 Urbanisation and Globalisation in the Twenty Firs… Dr. Ra… http…
 3 Nov 13, 2007 Financial Sector Policies for growth and employme… Dr. Y.… http…
 4 Nov 12, 2007 Fasten Your Seatbelts ! Monetary Policy Challenge… Mr T.T… http…
 5 Nov 07, 2007 Developing Debt Markets in India: Review and Pros… Dr. Y.… http…
 6 Nov 02, 2007 Evolving role of the Reserve Bank of India: Recen… Dr. Y.… http…
 7 Oct 25, 2007 Policy Panel at the NBER Conference on Internatio… Dr. Ra… http…
 8 Oct 24, 2007 Customer Centricity and the Reserve Bank           Shri V… http…
 9 Oct 24, 2007 Indian Derivatives Market - A Regulatory and Cont… Smt. S… http…
10 Oct 18, 2007 Some Perspectives on the Indian Economy            Dr. Y.… http…

[[93]]$error
NULL


[[94]]
[[94]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 16, 2007 India at 60 in a Changing World: Next 20 Years     Dr. Y.… http…
 2 Oct 08, 2007 Forex Reserves, Stabilization Funds and Sovereign… Dr. Y.… http…
 3 Oct 05, 2007 Elements of Effective Central Banking: Theory, Pr… Prof. … http…
 4 Sep 24, 2007 The Reserve Bank and the State Governments: Partn… Dr. Y.… http…
 5 Sep 20, 2007 Recent Financial Market Developments And Implicat… Dr. Ra… http…
 6 Sep 15, 2007 Basel II and Credit Risk Management                Shri V… http…
 7 Sep 14, 2007 Economic Reforms and Corporate Performance in Ind… Dr. Ra… http…
 8 Sep 13, 2007 India’s Preparedness for Basel II Implementation   Shri V… http…
 9 Sep 13, 2007 India: Development and Reform Experience; and Pro… Dr. Y.… http…
10 Sep 07, 2007 Monetary Policy Developments in India: An Overview Dr. Y.… http…

[[94]]$error
NULL


[[95]]
[[95]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Aug 03, 2007 First Quarter Review of Monetary Policy: Underlyi… Dr. Ra… http…
 2 Jul 03, 2007 Glimpses of Indian Economy and its Financial Sect… Dr. Y.… http…
 3 Jul 02, 2007 Statistical System of India: Some Reflections      Dr. Ra… http…
 4 Jun 29, 2007 Random Thoughts on Statistics and Surveys          Dr. Y.… http…
 5 Jun 28, 2007 Second P. R. Brahmananda Memorial Lecture          Avinas… http…
 6 Jun 21, 2007 Financial Inclusion – The Indian Experience        Smt. U… http…
 7 Jun 20, 2007 Risk Management in an Open Market Economy          Dr. Ra… http…
 8 Jun 14, 2007 Capital Account Liberalisation and Conduct of Mon… Dr. Ra… http…
 9 Jun 12, 2007 The Challenges of Financial Liberalisation for Em… Mr. Ch… http…
10 Jun 08, 2007 Indian Economy: Review, Prospects and Select Issu… Dr. Y.… http…

[[95]]$error
NULL


[[96]]
[[96]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 05, 2007 The Growing Influence of the Emerging World        Dr. Y.… http…
 2 May 29, 2007 Select Aspects of the Indian Economy               Dr. Y.… http…
 3 May 28, 2007 India – Perspective for Growth with Stability      Dr. Y.… http…
 4 May 17, 2007 The Indian Economy : Review and Prospects          Dr. Y.… http…
 5 May 16, 2007 Development of Financial Markets in India          Dr. Ra… http…
 6 Apr 14, 2007 The Global Economy and Financial Markets           Dr. Ra… http…
 7 Apr 09, 2007 Special features of Financial Sector Reforms in I… Smt. S… http…
 8 Apr 02, 2007 Monetary Policy Transmission in India              Dr. Ra… http…
 9 Apr 02, 2007 Role of Monetary Policy in Attaining Growth with … Dr. Y.… http…
10 Mar 30, 2007 Economic Outlook: Some thoughts on Asia and India  Dr. Y.… http…

[[96]]$error
NULL


[[97]]
[[97]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Mar 19, 2007 Globalisation and Monetary Policy : Some Emerging… Dr. Y.… http…
 2 Mar 13, 2007 Indian Financial Sector Reforms                    Shri V… http…
 3 Mar 09, 2007 Regulators’ Eyes on Financial Institutions         Dr. Y.… http…
 4 Mar 06, 2007 Development of Local Currency Bond Markets : The … Smt. S… http…
 5 Mar 02, 2007 Banking in the Hinterland                          Smt. U… http…
 6 Feb 27, 2007 What RBI means to the Common Person                Dr. Y.… http…
 7 Feb 13, 2007 Current Challenges to Monetary Policy Making in I… Dr. Ra… http…
 8 Jan 19, 2007 Overseas Investments by Indian companies - Evolut… Smt. S… http…
 9 Dec 19, 2006 Dynamics of Balance of Payments in India           Dr. Y.… http…
10 Dec 18, 2006 Rural Banking: Review and Prospects                Dr. Y.… http…

[[97]]$error
NULL


[[98]]
[[98]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Dec 08, 2006 Urban Cooperative Banks – Evolution of the banks,… Smt. U… http…
 2 Nov 21, 2006 Central Banks and Risk Management: Pursuing Finan… Dr. Ra… http…
 3 Nov 17, 2006 Monetary and Financial Policy Responses to Global… Dr. Ra… http…
 4 Nov 16, 2006 Economic Reforms in India: Where are We and Where… Dr. Ra… http…
 5 Nov 08, 2006 Inclusive Growth : Role of Financial Education     Smt. S… http…
 6 Nov 07, 2006 State of the Indian Economy                        Dr. Ra… http…
 7 Nov 04, 2006 Financial Inclusion for Sustainable Development :… Smt. U… http…
 8 Nov 03, 2006 Economic Growth, Financial Deepening and Financia… Dr. Ra… http…
 9 Oct 23, 2006 Payment and Settlement Systems : Select issues     Dr. Y.… http…
10 Oct 13, 2006 Risks Associated with Macroeconomic Adjustments: … Dr. Ra… http…

[[98]]$error
NULL


[[99]]
[[99]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 09, 2006 Banking and Financial Sector Reforms : Status and… Dr. Y.… http…
 2 Sep 29, 2006 Globalisation, Money and Finance – Uncertainties … Dr. Y.… http…
 3 Sep 29, 2006 Reserve Bank of India Archives: Some Reflections … Dr. Ra… http…
 4 Sep 27, 2006 Changing Paradigms in Risk Management              Smt. S… http…
 5 Sep 26, 2006 Demystifying Basel II*                             Shri V… http…
 6 Sep 21, 2006 The Role of Financial Education: The Indian Case   Dr. Y.… http…
 7 Sep 21, 2006 IT for Business Excellence                         Shri V… http…
 8 Sep 19, 2006 Foreign Exchange Reserves: New Realities and Opti… Dr. Y.… http…
 9 Sep 18, 2006 Asian Perspective on Growth: Outlook for India     Dr. Y.… http…
10 Sep 07, 2006 Credit Counselling : An Indian Perspective         Dr. Y.… http…

[[99]]$error
NULL


[[100]]
[[100]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 05, 2006 Use of technology in the financial sector: Signif… Dr. Y.… http…
 2 Aug 24, 2006 New Economic Geography and Monetary Policy in a F… Dr. Ra… http…
 3 Jul 24, 2006 Avian Influenza Pandemic: Preparedness within the… Dr. Ra… http…
 4 Jul 01, 2006 Banks and Service to the Common Person             Dr. Y.… http…
 5 Jun 30, 2006 Comments of Dr. Y.V.Reddy, Governor, RBI as a pan… Dr. Y.… http…
 6 Jun 28, 2006 Comments of Dr.Y.V.Reddy, Governor, RBI            Dr. Y.… http…
 7 Jun 06, 2006 Asia's Urban Century: Emerging Trends              Dr. Ra… http…
 8 Jun 03, 2006 Financial Sector Reforms and Monetary Policy: The… Dr. Ra… http…
 9 May 30, 2006 Treating Bank Customers Fairly- Regulatory Initia… Smt. U… http…
10 May 25, 2006 Governor, Dr. Y. V Reddy's Discussion at Council … Dr. Y.… http…

[[100]]$error
NULL


[[101]]
[[101]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 May 25, 2006 Monetary Policy and Exchange Rate Frameworks: The… Dr. Ra… http…
 2 May 25, 2006 India in Emerging Asia                             Dr. Y.… http…
 3 May 17, 2006 Evolution of Central Banking in India              Dr. Ra… http…
 4 May 12, 2006 Approach to Basel II                               Smt. S… http…
 5 May 12, 2006 Reflections on India’s economic development *      Dr. Y.… http…
 6 May 11, 2006 Global Imbalances- An Indian Perspective           Dr. Y.… http…
 7 May 09, 2006 Reforming India’s Financial Sector: Changing Dime… Dr. Y.… http…
 8 May 03, 2006 Challenges and implications of Basel II for Asia*  Dr. Y.… http…
 9 Apr 22, 2006 Statement by Honorable Governor Dr. Y.V. Reddy, L… Dr. Y.… http…
10 Mar 27, 2006 Coping With Liquidity Management in India: A Prac… Dr. Ra… http…

[[101]]$error
NULL


[[102]]
[[102]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Mar 18, 2006 Governor’s Speech                                  Dr. Y.… http…
 2 Mar 18, 2006 Vote of Thanks by Dr. Rakesh Mohan, Deputy Govern… Dr. Ra… http…
 3 Mar 18, 2006 Prime Minister's Speech                            Dr. Ma… http…
 4 Mar 18, 2006 Finance Minister`s Speech                          P. Chi… http…
 5 Mar 14, 2006 Recent Trends in the Indian Debt Market and Curre… Dr. Ra… http…
 6 Mar 10, 2006 Financial Sector Reform and Financial Stability    Dr. Y.… http…
 7 Mar 06, 2006 Reforms, Productivity and Efficiency in Banking: … Dr. Ra… http…
 8 Jan 31, 2006 Indian banks and the global challenges*            Shri V… http…
 9 Jan 23, 2006 Central Bank Communications : Some Random Thoughts Dr. Y.… http…
10 Jan 19, 2006 Role of Accountants in Fostering Economic Growth   Dr. Y.… http…

[[102]]$error
NULL


[[103]]
[[103]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 16, 2006 Financial Inclusion and Millennium Development Go… Smt. U… http…
 2 Dec 27, 2005 Importance of Productivity in India                Dr. Y.… http…
 3 Dec 16, 2005 Corporate governance in banks in India             Dr. Y.… http…
 4 Dec 03, 2005 Future growth drivers : Retail versus corporate    Smt. S… http…
 5 Dec 02, 2005 Taking Banking Services to the Common Man – Finan… Shri V… http…
 6 Nov 26, 2005 Foreign Exchange Regulations – A Review            Smt. S… http…
 7 Nov 14, 2005 Indian banking – The challenges ahead              Shri V… http…
 8 Nov 14, 2005 Corporate Governance in the Financial Sector       Smt. S… http…
 9 Nov 07, 2005 Human Development and State Finances               Dr. Ra… http…
10 Nov 04, 2005 Implications of Global Financial Imbalances for t… Dr. Y.… http…

[[103]]$error
NULL


[[104]]
[[104]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 28, 2005 Some Apparent Puzzles for Contemporary Monetary P… Dr. Ra… http…
 2 Oct 07, 2005 Banks and Corporates as Partners in Progress       Dr. Y.… http…
 3 Sep 09, 2005 Communications in Central Banks: A Perspective     Dr. Ra… http…
 4 Sep 08, 2005 Indian Economy in the Global Setting               Dr. Ra… http…
 5 Sep 03, 2005 Monetary Co-operation in Asia                      Dr. Y.… http…
 6 Aug 26, 2005 Financial System Stability and Basel II -Way Forw… Smt. K… http…
 7 Aug 13, 2005 Recent Developments in Forex, Money and G-Sec Mar… Smt. S… http…
 8 Aug 06, 2005 Micro-Finance : Reserve Bank’s Approach*           Dr. Y.… http…
 9 Jul 09, 2005 Regulation and Risk Management: Implementing Base… Shri V… http…
10 Jun 23, 2005 Overcoming Challenges in a Globalising Economy : … Dr. Y.… http…

[[104]]$error
NULL


[[105]]
[[105]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 22, 2005 Challenges In Banking Security                     Shri V… http…
 2 Jun 10, 2005 Value-based Professionals: The Need of the Hour*   Shri V… http…
 3 Jun 09, 2005 Banking with Technology – The Road Ahead           Shri V… http…
 4 Jun 07, 2005 Globalisation of Monetary Policy and Indian Exper… Dr. Y.… http…
 5 Jun 07, 2005 A BIT of Tomorrow                                  Smt. K… http…
 6 May 28, 2005 Retail Banking - Opportunities and Challenges *    Smt. S… http…
 7 May 26, 2005 Emerging Challenges before the Indian Banks – The… Shri V… http…
 8 May 18, 2005 Banking Sector Reforms in India: An Overview       Dr. Y.… http…
 9 Apr 26, 2005 In quest of new cheese                             Smt. K… http…
10 Apr 26, 2005 Are Banks serving the Common Man ?                 Smt. K… http…

[[105]]$error
NULL


[[106]]
[[106]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 08, 2005 A Synoptic View of the Twelfth Finance Commission… Dr. C.… http…
 2 Apr 04, 2005 Human Development and State Finances: Some Though… Smt. S… http…
 3 Apr 03, 2005 Emerging Realities in Banking & Finance: Role of … Shri V… http…
 4 Mar 12, 2005 Managing Talent in Banks: A Few Thoughts           Shri V… http…
 5 Mar 11, 2005 Basel II Accord and its Implications               Shri V… http…
 6 Mar 11, 2005 The Roadmap for Fixed Income and Derivatives Mark… Dr. Y.… http…
 7 Mar 11, 2005 Contemporary and Future Issues in Indian Banking*  Shri V… http…
 8 Feb 12, 2005 Monetary Policy: An Outline*                       Dr. Y.… http…
 9 Feb 10, 2005 The pursuit of financial stability                 Smt. K… http…
10 Jan 25, 2005 Foreign Exchange Regulatory Regimes in India: Fro… Smt. S… http…

[[106]]$error
NULL


[[107]]
[[107]]$result
NULL

[[107]]$error
<error/tibble_error_incompatible_size>
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 10: Existing data.
• Size 9: Column `link`.
ℹ Only values of size one are recycled.
---
Backtrace:
     ▆
  1. └─purrr::map(link_pages, safely(get_speech_details))
  2.   └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
  3.     ├─purrr:::with_indexed_errors(...)
  4.     │ └─base::withCallingHandlers(...)
  5.     ├─purrr:::call_with_cleanup(...)
  6.     └─purrr (local) .f(.x[[i]], ...)
  7.       ├─purrr:::capture_error(.f(...), otherwise, quiet)
  8.       │ └─base::tryCatch(...)
  9.       │   └─base (local) tryCatchList(expr, classes, parentenv, handlers)
 10.       │     └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
 11.       │       └─base (local) doTryCatch(return(expr), name, parentenv, handler)
 12.       └─global .f(...)
 13.         └─tibble::tibble(...)


[[108]]
[[108]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 20, 2004 First P. R. Brahmananda Memorial Lecture           Lord M… http…
 2 Sep 16, 2004 Financial Sector Reforms in India: Policies and P… Dr. Ra… http…
 3 Sep 16, 2004 Issues in Bank Regulation and Supervision*         Smt. K… http…
 4 Sep 09, 2004 Ownership and Governance in Private Sector Banks … Dr. Ra… http…
 5 Aug 28, 2004 Bank Supervision – Challenges Ahead*               Smt. K… http…
 6 Aug 27, 2004 Current Concerns and Some Perspectives on Inflati… Dr. Y.… http…
 7 Aug 20, 2004 Development of Forex Markets in India : Review an… Smt. K… http…
 8 Aug 14, 2004 Debt Markets in India - Issues and Prospects       Dr. Ra… http…
 9 Jul 30, 2004 Indian Banking and e-Security*                     Dr. Ra… http…
10 Jul 17, 2004 India and the Global Economy                       Dr. Y.… http…

[[108]]$error
NULL


[[109]]
[[109]]$result
NULL

[[109]]$error
<error/tibble_error_incompatible_size>
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 10: Existing data.
• Size 8: Column `link`.
ℹ Only values of size one are recycled.
---
Backtrace:
     ▆
  1. └─purrr::map(link_pages, safely(get_speech_details))
  2.   └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
  3.     ├─purrr:::with_indexed_errors(...)
  4.     │ └─base::withCallingHandlers(...)
  5.     ├─purrr:::call_with_cleanup(...)
  6.     └─purrr (local) .f(.x[[i]], ...)
  7.       ├─purrr:::capture_error(.f(...), otherwise, quiet)
  8.       │ └─base::tryCatch(...)
  9.       │   └─base (local) tryCatchList(expr, classes, parentenv, handlers)
 10.       │     └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
 11.       │       └─base (local) doTryCatch(return(expr), name, parentenv, handler)
 12.       └─global .f(...)
 13.         └─tibble::tibble(...)


[[110]]
[[110]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 05, 2004 Agricultural Credit in India: Status, Issues and … Dr. Ra… http…
 2 Jan 21, 2004 Capital Flows and Indian Policy Response - Presid… Dr. Y.… http…
 3 Jan 13, 2004 L.K. Jha Memorial Lecture by Martin Feldstein on … Martin… http…
 4 Jan 07, 2004 The Outlook for Indian Economy - An Update         Dr. Y.… http…
 5 Jan 06, 2004 Credit Policy, Systems and Culture                 Dr. Y.… http…
 6 Jan 01, 2004 Understanding Reforms                              Dr. Y.… http…
 7 Dec 12, 2003 Retail Banking : Challenges Ahead in Distribution… Shri V… http…
 8 Dec 11, 2003 Towards Globalisation in the Financial Sector in … Dr. Y.… http…
 9 Dec 09, 2003 Banking and Trade Finance Inaugural Address        Smt. K… http…
10 Nov 28, 2003 Finance for Industrial Growth                      Dr. Ra… http…

[[110]]$error
NULL


[[111]]
[[111]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 21, 2003 Challenges to Monetary Policy in A Global Context  Dr. Ra… http…
 2 Sep 23, 2003 Boards of Governors - 2003 Annual Meetings         Dr. Y.… http…
 3 Sep 21, 2003 The Global Economy and Financial Markets           Dr. Y.… http…
 4 Sep 19, 2003 Economic Development of the North East Region:Som… Dr. Ra… http…
 5 Sep 16, 2003 Indian Economic Scenario Yesterday – Today – Tomo… Shri V… http…
 6 Sep 09, 2003 Financing for Entrepreneurship and SMEs : An Indi… Shri V… http…
 7 Aug 21, 2003 Recent Technological Developments In Indian Banki… Shri V… http…
 8 Aug 21, 2003 Recent Technological Developments in Indian Banki… Shri V… http…
 9 Aug 14, 2003 Exchange Rate Management: An Emerging Consensus?   Dr. Bi… http…
10 Jul 25, 2003 Role of Quality Human Resource in Target Setting … Shri V… http…

[[111]]$error
NULL


[[112]]
[[112]]$result
NULL

[[112]]$error
<error/tibble_error_incompatible_size>
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 10: Existing data.
• Size 8: Column `link`.
ℹ Only values of size one are recycled.
---
Backtrace:
     ▆
  1. └─purrr::map(link_pages, safely(get_speech_details))
  2.   └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
  3.     ├─purrr:::with_indexed_errors(...)
  4.     │ └─base::withCallingHandlers(...)
  5.     ├─purrr:::call_with_cleanup(...)
  6.     └─purrr (local) .f(.x[[i]], ...)
  7.       ├─purrr:::capture_error(.f(...), otherwise, quiet)
  8.       │ └─base::tryCatch(...)
  9.       │   └─base (local) tryCatchList(expr, classes, parentenv, handlers)
 10.       │     └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
 11.       │       └─base (local) doTryCatch(return(expr), name, parentenv, handler)
 12.       └─global .f(...)
 13.         └─tibble::tibble(...)


[[113]]
[[113]]$result
NULL

[[113]]$error
<error/tibble_error_incompatible_size>
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 10: Existing data.
• Size 9: Column `link`.
ℹ Only values of size one are recycled.
---
Backtrace:
     ▆
  1. └─purrr::map(link_pages, safely(get_speech_details))
  2.   └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
  3.     ├─purrr:::with_indexed_errors(...)
  4.     │ └─base::withCallingHandlers(...)
  5.     ├─purrr:::call_with_cleanup(...)
  6.     └─purrr (local) .f(.x[[i]], ...)
  7.       ├─purrr:::capture_error(.f(...), otherwise, quiet)
  8.       │ └─base::tryCatch(...)
  9.       │   └─base (local) tryCatchList(expr, classes, parentenv, handlers)
 10.       │     └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
 11.       │       └─base (local) doTryCatch(return(expr), name, parentenv, handler)
 12.       └─global .f(...)
 13.         └─tibble::tibble(...)


[[114]]
[[114]]$result
NULL

[[114]]$error
<error/tibble_error_incompatible_size>
Error in `tibble()`:
! Tibble columns must have compatible sizes.
• Size 10: Existing data.
• Size 9: Column `link`.
ℹ Only values of size one are recycled.
---
Backtrace:
     ▆
  1. └─purrr::map(link_pages, safely(get_speech_details))
  2.   └─purrr:::map_("list", .x, .f, ..., .progress = .progress)
  3.     ├─purrr:::with_indexed_errors(...)
  4.     │ └─base::withCallingHandlers(...)
  5.     ├─purrr:::call_with_cleanup(...)
  6.     └─purrr (local) .f(.x[[i]], ...)
  7.       ├─purrr:::capture_error(.f(...), otherwise, quiet)
  8.       │ └─base::tryCatch(...)
  9.       │   └─base (local) tryCatchList(expr, classes, parentenv, handlers)
 10.       │     └─base (local) tryCatchOne(expr, names, parentenv, handlers[[1L]])
 11.       │       └─base (local) doTryCatch(return(expr), name, parentenv, handler)
 12.       └─global .f(...)
 13.         └─tibble::tibble(...)


[[115]]
[[115]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 11, 2002 Winning Strategies in Small and Medium Enterprise… Shri V… http…
 2 Jan 23, 2002 Legal Aspects of International Financial Standard… Dr. Y.… http…
 3 Jan 17, 2002 Indian Banking of Tomorrow *                       Shri V… http…
 4 Jan 16, 2002 Indian Banking : Paradigm Shift in Public Policy   Dr. Y.… http…
 5 Jan 15, 2002 India and Globalisation                            Dr. Bi… http…
 6 Jan 15, 2002 Parameters of Monetary Policy in India             Dr. Y.… http…
 7 Jan 14, 2002 Indian Banking and Finance: Managing New Challeng… Dr. Bi… http…
 8 Jan 14, 2002 Indian Banking : Paradigm Shift – A regulatory po… Shri. … http…
 9 Jan 06, 2002 Corporate Governance and Financial Sector: Some I… Dr. Bi… http…
10 Dec 06, 2001 Knowledge Revolution and Social Development        Shri V… http…

[[115]]$error
NULL


[[116]]
[[116]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 22, 2001 Corporate Governance                               Shri V… http…
 2 Nov 02, 2001 Changing Faces of Banking : Banking With Technolo… Shri V… http…
 3 Oct 26, 2001 Forex Markets in India: Some Thoughts              Shri V… http…
 4 Oct 03, 2001 Autonomy of the Central Bank : Changing Contours … Dr. Y.… http…
 5 Sep 22, 2001 Primary Dealers, Debt Markets and State Finances … Dr. Y.… http…
 6 Sep 12, 2001 Indian Insurance : At The Crossroads               Shri V… http…
 7 Sep 05, 2001 Reviving Confidence in the Indian Economy          Dr. Y.… http…
 8 Aug 28, 2001 Communication Policy of the Reserve Bank of India  Dr. Y.… http…
 9 Jul 20, 2001 Credit through Co-Operatives : Some Thoughts       Shri V… http…
10 Jul 17, 2001 Fiscal Transparency and Beyond                     Dr. Y.… http…

[[116]]$error
NULL


[[117]]
[[117]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 29, 2001 Issues in Implementing International Financial St… Dr. Y.… http…
 2 May 22, 2001 Issues in Choosing Between Single and Multiple Re… Dr. Y.… http…
 3 May 19, 2001 Globalisation and Challenges for South Asia        Dr. Y.… http…
 4 May 10, 2001 Urban Co-operative Banks: Agenda for Future Refor… Shri J… http…
 5 Apr 27, 2001 Indian Agriculture and Reform : Concerns, Issues … Dr. Y.… http…
 6 Apr 24, 2001 Developments in Monetary Policy and Financial Mar… Dr. Y.… http…
 7 Mar 19, 2001 Financial Sector Reforms : An Update               Dr. Y.… http…
 8 Mar 15, 2001 Implementation of Financial Standards and Codes: … Dr. Y.… http…
 9 Feb 14, 2001 Developmental Issues in Micro Credit               Shri J… http…
10 Feb 09, 2001 Central Banking in the New Millennium*             Dr. Y.… http…

[[117]]$error
NULL


[[118]]
[[118]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jan 16, 2001 "Financial Stability and the Role of Banks"        "Shri … http…
 2 Jan 15, 2001 "Banking and Finance in the New Millennium."       "Dr. B… http…
 3 Jan 15, 2001 "\"India's Economy in the Twenty-First Century: A… "Dr. B… http…
 4 Dec 07, 2000 "Summary of the Welcome Remarks by Dr.Bimal Jalan… "Dr. B… http…
 5 Dec 04, 2000 "Development and Management of Forex Markets : A … "Dr. B… http…
 6 Nov 24, 2000 "Fiscal Reforms at State-level : Review and Prosp… "Dr. Y… http…
 7 Nov 24, 2000 "Pension System in India : A Central Banker's Per… ""      http…
 8 Nov 16, 2000 "Government Budgets, Banking and Auditors: What i… "Dr. Y… http…
 9 Oct 30, 2000 "Indian Economy : 1950; 2000; 2020"                "Dr. Y… http…
10 Oct 10, 2000 "Risk Management in Financial Institutions"        "Shri … http…

[[118]]$error
NULL


[[119]]
[[119]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 20, 2000 Fiscal and Monetary Policy Interface : Recent Dev… Dr. Y.… http…
 2 Aug 19, 2000 Deposit Insurance Reforms in India                 Shri J… http…
 3 Jul 29, 2000 Current Developments in Money and Government Secu… Shri P… http…
 4 Jul 13, 2000 Capital Flows and Self Reliance Redefined          Dr. Y.… http…
 5 Jul 08, 2000 Analysing Economic Policy and Sourcing Reserve Ba… Dr. Y.… http…
 6 Jun 24, 2000 Issues in Managing Capital Account Liberalisation  Dr. Y.… http…
 7 Jun 22, 2000 Operationalising Capital Account Liberalisation :… Dr. Y.… http…
 8 Jun 20, 2000 Managing Public Debt and Promoting Debt Markets i… Dr. Y.… http…
 9 Jun 13, 2000 Changing Role of RBI: Agenda for Attention         Dr. Y.… http…
10 May 05, 2000 Pro-Poor Growth: New Realities and Emerging Quest… Dr. Y.… http…

[[119]]$error
NULL


[[120]]
[[120]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 08, 2000 "Credit Rating : Changing Perspectives"            Dr. Y.… http…
 2 Mar 18, 2000 "Bretton Woods Institutions In 2000"               Dr. Y.… http…
 3 Mar 04, 2000 "Budget 2000 and Fixed Income Markets"             Dr. Y.… http…
 4 Feb 25, 2000 "Monetary and Fiscal Policy, and Poverty, andPubl… Dr. Y.… http…
 5 Feb 25, 2000 "Banking in Future : Flexibility, Autonomy and Re… Dr. Y.… http…
 6 Feb 15, 2000 "Legislation on Fiscal Responsibility and Reserve… Dr. Y.… http…
 7 Feb 09, 2000 "Agenda for Banking in the Millenium"              Dr. Bi… http…
 8 Feb 07, 2000 "International Financial Regulation : The Quiet R… Mr.How… http…
 9 Feb 02, 2000 "\"Is Inflation Dead\" - Some Comments"            Dr. Y.… http…
10 Jan 04, 2000 "Developing Government Securities Market : Some I… Dr. Y.… http…

[[120]]$error
NULL


[[121]]
[[121]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Dec 06, 1999 Finance and Development - Which Way Now?           Dr. Bi… http…
 2 Dec 04, 1999 Future of Rural Banking                            Dr. Y.… http…
 3 Sep 16, 1999 Structural Reforms in ARDBS : Issues and Prospects Shri J… http…
 4 Sep 08, 1999 State and Market: Altering the Boundaries and Eme… Dr. Y.… http…
 5 Sep 08, 1999 March to the New Millenium by Indian banks         Shri S… http…
 6 Sep 03, 1999 Development of Forex Markets: Indian Experience    Dr. Y.… http…
 7 Aug 25, 1999 International Financial Architecture: Developing … Dr. Bi… http…
 8 Aug 17, 1999 Inflation in India : Status and Issues             Dr. Y.… http…
 9 Jul 22, 1999 IT and the Banking Sector                          Shri S… http…
10 Jun 28, 1999 Discussion Paper on Universal Banking and Beyond   Dr. Y.… http…

[[121]]$error
NULL


[[122]]
[[122]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jun 28, 1999 Regulatory Regime in Financial Sector - Emerging … Shri S… http…
 2 Jun 26, 1999 Corporate Governance in Financial Sector           Dr. Y.… http…
 3 Jun 19, 1999 INFINET and the Payment Systems                    Shri S… http…
 4 Jun 19, 1999 INFINET and its Impact on Banking                  Dr. A.… http…
 5 Jun 15, 1999 Conference on Corporate Governance in Banking and… Shri S… http…
 6 Jun 11, 1999 External Debt Policies in Emerging Economies : Ne… Dr. Y.… http…
 7 May 26, 1999 Monetary Policy in India : Objectives, Instrument… Dr. Y.… http…
 8 Apr 17, 1999 Securitisation in India: Next Steps                Dr. Y.… http…
 9 Feb 24, 1999 Inaugural Address at the National Seminar on Comp… Shri S… http…
10 Feb 20, 1999 Euro and its Implications for India                Dr. Y.… http…

[[122]]$error
NULL


[[123]]
[[123]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Feb 15, 1999 Way forward for Private Banks in India             Shri S… http…
 2 Feb 11, 1999 Issues in fixed Income Markets                     Dr. Y.… http…
 3 Feb 01, 1999 Development of Money Market in India               Dr. Y.… http…
 4 Jan 27, 1999 SAARCFinance - 1999 - Emerging Trends in Supervis… Shri S… http…
 5 Dec 18, 1998 Banking Soundness, Monetary Policy and Macro-econ… Dr. Y.… http…
 6 Dec 16, 1998 TOWARDS A MORE VIBRANT BANKING SYSTEM              Dr. Bi… http…
 7 Dec 16, 1998 The Changing Dimensions of Supervision and Regula… Shri S… http…
 8 Dec 04, 1998 Restructuring of the Public Finances and Macro-ec… Dr. Y.… http…
 9 Nov 23, 1998 Managing Capital Flows                             Dr. Y.… http…
10 Nov 20, 1998 Financial Sector Reform: Review and Prospects      Dr. Y.… http…

[[123]]$error
NULL


[[124]]
[[124]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Nov 14, 1998 RBI and Banking Sector Reform                      Dr. Y.… http…
 2 Nov 11, 1998 Infrastructure Financing : Status and Issues       Dr. Y.… http…
 3 Nov 02, 1998 Development of Debt Markets in India·              Dr. Y.… http…
 4 Oct 01, 1998 Managing Capital Account                           Dr. Y.… http…
 5 Sep 19, 1998 Management Challenges for the Next Century         Dr. Bi… http…
 6 Sep 16, 1998 Trends in International Banking                    Dr. Bi… http…
 7 Aug 14, 1998 Indian Economy: A Retrospect and Prospects         Dr. Y.… http…
 8 Aug 02, 1998 Venture Capital and Technology Development in Ind… Dr. Y.… http…
 9 Jul 17, 1998 India among the leaders of 21st century: Fifth L.… Mr. Ru… http…
10 Jun 03, 1998 Interest Rates in India : Status and Issues        Dr. Y.… http…

[[124]]$error
NULL


[[125]]
[[125]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 May 08, 1998 "Science, Technology and Development: Sir Vithal … Dr. Bi… http…
 2 May 02, 1998 "Monetary and Credit Policy Continuity, Context, … Dr. Y.… http…
 3 May 01, 1998 "Asian Crisis: Asking Right Questions"             Dr. Y.… http…
 4 Mar 23, 1998 "Inaugural address - Primary Dealers Association … Dr. Y.… http…
 5 Mar 21, 1998 "High Banking Transaction Costs are a `Deadweight… Dr. Bi… http…
 6 Mar 17, 1998 "Seminar on Regulatory Framework for Non-Banking … Shri S… http…
 7 Feb 28, 1998 "State Finances and RBI Initiatives"               Dr. Y.… http…
 8 Feb 20, 1998 "Key note address at the CII seminar on \"Emergin… Dr. Y.… http…
 9 Feb 11, 1998 "Inaugural Address - Meeting of International Org… Dr. Bi… http…
10 Dec 29, 1997 "Economists and Public Policy"                     Dr. Y.… http…

[[125]]$error
NULL


[[126]]
[[126]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Dec 27, 1997 "Public Debt: Current Issues"                      Dr. Y.… http…
 2 Nov 18, 1997 "External Debt and Economic Reform, Seminar on Ne… Dr. Y.… http…
 3 Nov 17, 1997 "Monetary and Credit Policy: Issues and Perspecti… Dr. Y.… http…
 4 Nov 14, 1997 "Financial Sector Reforms and RBI's Balance Sheet… Dr. Y.… http…
 5 Nov 11, 1997 "Ninth V.T. Krishnamachari Memorial Lecture on \"… Dr. C.… http…
 6 Nov 05, 1997 "Indian Financial Markets : New Initiatives"       Dr. Y.… http…
 7 Oct 09, 1997 "The Future of India's Debt Market 1997"           Dr. Y.… http…
 8 Oct 08, 1997 "Indian Banking Second Phase of Reforms Agenda an… Dr. Y.… http…
 9 Oct 06, 1997 "Indian Banking - Second Phase of Reforms - Issue… Dr. C.… http…
10 Oct 03, 1997 "Indian Economy: Current Trends and Immediate Pro… Dr. C.… http…

[[126]]$error
NULL


[[127]]
[[127]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 03, 1997 Governor's address at the Special convocation to … Dr. C.… http…
 2 Sep 29, 1997 Annual Meetings of the World Bank Group and Inter… Dr. C.… http…
 3 Aug 30, 1997 Silver Jubilee National Convention and Third Inte… Dr. C.… http…
 4 Aug 30, 1997 SBICAP Debt Market Seminar 1997                    Dr. C.… http…
 5 Aug 30, 1997 Inauguration of Andhra Bank Credit Card Transacti… Dr. C.… http…
 6 Aug 29, 1997 On the conferment of schedule status and successf… Dr. C.… http…
 7 Aug 20, 1997 The Role and Regulation of NBFCs                   Shri S… http…
 8 Aug 15, 1997 Exchange Rate Management : Dilemmas                Dr. Y.… http…
 9 Aug 02, 1997 Gold Banking in India                              Dr. Y.… http…
10 Aug 02, 1997 Development of Gold Market in India                Smt. U… http…

[[127]]$error
NULL


[[128]]
[[128]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Jul 25, 1997 Current Economic Trends at the All India Manufact… Dr. C.… http…
 2 Jun 21, 1997 Capital Flight : Myths and Realities               Dr. Y.… http…
 3 Jun 11, 1997 Monetary Policy and Prospects for Investment in I… Dr. Y.… http…
 4 May 27, 1997 Second Annual Indian Stock Exchanges Summit, 1997  Dr. C.… http…
 5 May 18, 1997 Financial Sector Reforms: The Indian Experience    Dr. C.… http…
 6 May 12, 1997 Financial Sector Reforms in India - Recent Trends  Dr. Y.… http…
 7 Mar 17, 1997 Competition Policy in a Global Economy             Dr. Y.… http…
 8 Mar 08, 1997 Budget and RBI : New Directions                    Dr. Y.… http…
 9 Feb 05, 1997 Conference on Disinvestment: Strategies & Issues   Dr. C.… http…
10 Feb 03, 1997 RBI-BIS Seminar on Banking Supervision: RBI Gover… Dr. C.… http…

[[128]]$error
NULL


[[129]]
[[129]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Dec 27, 1996 Public Enterprises and Economic Reforms            Dr. Y.… http…
 2 Dec 18, 1996 Competition in Indian Banking : Issues and Implic… Dr. Y.… http…
 3 Dec 16, 1996 Prospects for Saving and Growth                    Dr. Y.… http…
 4 Dec 05, 1996 The Fourth L.K. Jha Memorial Lecture               Willia… http…
 5 Nov 28, 1996 Gold in the Indian Economic System                 Dr. Y.… http…
 6 Feb 20, 1995 Capital Market Innovations: Challenges and Opport… Andrew… http…
 7 Dec 30, 1994 The Reform of the Financial Sector Choices and Le… Dr. C.… http…
 8 Nov 25, 1994 The Relevance of Hayekian Analysis for Monetary P… Shri S… http…
 9 Nov 21, 1994 Foreign Exchange Reserves Management an Indian Pe… Shri S… http…
10 Nov 11, 1994 Financial Sector Reforms a Continnum Speech By S.… Shri S… http…

[[129]]$error
NULL


[[130]]
[[130]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Sep 19, 1994 The Disappearance of Twin Defeciets : Macro - Eco… Shri S… http…
 2 Sep 19, 1994 Rural Banking at the Cross Roads - Speech by S.S.… Shri S… http…
 3 Sep 19, 1994 The Role of an Active Debt Management Policy in t… Shri S… http…
 4 Sep 05, 1994 Imperatives of Banking in India - speech by C. Ra… Dr. C.… http…
 5 Aug 31, 1994 Valedictory Address by C. Rangarajan               Dr. C.… http…
 6 May 27, 1994 The Indian Financial System: The Emerging Horizon… Dr. C.… http…
 7 May 19, 1994 The Credit and Monetary Policy for the First Half… Dr. C.… http…
 8 Apr 02, 1994 Inaugural Address by C. Rangarajan                 Dr. C.… http…
 9 Mar 23, 1994 India Integrating into World Economy - Speech by … Dr. C.… http…
10 Mar 17, 1994 Role of Credit in Poverty Alleviation - Speech by… Dr. C.… http…

[[130]]$error
NULL


[[131]]
[[131]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Mar 09, 1994 Developing the Money and Securities Market in Ind… Dr. C.… http…
 2 Feb 20, 1994 Monetary Policy Revisited - Speech by C. Rangaraj… Dr. C.… http…
 3 Jan 31, 1994 Banking with the Poor - Speech by C. Rangarajan    Dr. C.… http…
 4 Jan 23, 1994 Autonomy and Monetary Policy of Reserve Bank of I… Shri S… http…
 5 Jan 18, 1994 India's Balance of Payments the Emerging Dimensio… Dr. C.… http…
 6 Dec 04, 1993 Coping with Financial Sector Reform - A Strategy … Shri S… http…
 7 Nov 22, 1993 Eighth C. D. Deshmukh Memortal Lecture - Central … John W… http…
 8 Nov 18, 1993 Financial Services for Industries - Speech by C. … Dr. C.… http…
 9 Nov 04, 1993 Banking Education and Training - Management of Dy… Dr. C.… http…
10 Nov 03, 1993 Technology and the Financial Sector - Speech by C… Dr. C.… http…

[[131]]$error
NULL


[[132]]
[[132]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Oct 26, 1993 Industrial Prospects and Opportunities during the… Dr. C.… http…
 2 Oct 19, 1993 Interaction of Domestic and International Monetar… Shri S… http…
 3 Sep 17, 1993 Autonomy of Central banks - Tenth M.G Kutty Memor… Dr. C.… http…
 4 Sep 01, 1993 Speedy Payment of Remittances - Speech by C. Rang… Dr. C.… http…
 5 Sep 01, 1993 Insurance and Risk Management in a Liberalised Ec… Dr. C.… http…
 6 Sep 01, 1993 Second L.K. Jha Memorial Lecture - The Strategy o… Jacob … http…
 7 Jul 26, 1993 The Role of Non Banking Financial Companies - Spe… Dr. C.… http…
 8 May 21, 1993 Banking and Finance - Monetary and Fiscal Policie… Dr. C.… http…
 9 May 18, 1993 Growth of Computerisation in Banking industry - S… Dr. C.… http…
10 May 12, 1993 Financial Sector Reform and Non Banking Financial… Shri S… http…

[[132]]$error
NULL


[[133]]
[[133]]$result
# A tibble: 10 × 4
   date         short_description                                  speaker link 
   <chr>        <chr>                                              <chr>   <chr>
 1 Apr 23, 1993 Financial Sector Reforms and Banking Industry - S… Dr. C.… http…
 2 Apr 15, 1993 Keynote Address - by C. Rangarajan                 Dr. C.… http…
 3 Apr 09, 1993 Managing Competition: Success Strategies - Speech… Dr. C.… http…
 4 Mar 11, 1993 The Future Course of Monetary Policy - Speech by … Shri S… http…
 5 Mar 08, 1993 New Economic Policy and the Role of the State - S… Dr. C.… http…
 6 Jan 30, 1993 Inflation, Monetary Policy and Financial Sector R… Shri S… http…
 7 Jan 28, 1993 Banking Sector Reform - Speech by C. Rangarajan    Dr. C.… http…
 8 Jan 21, 1993 The macroeconomic Scenario and Credit Policy - Sp… Dr. C.… http…
 9 Jan 09, 1993 Financial Performance of State Electricity Boards… Dr. C.… http…
10 Nov 30, 1992 The Strategy of Economic Adjustment                Jacob … http…

[[133]]$error
NULL


[[134]]
[[134]]$result
# A tibble: 8 × 4
  date         short_description                                   speaker link 
  <chr>        <chr>                                               <chr>   <chr>
1 Nov 25, 1992 Issues in Commercial Banking Reforms - Speech by S… Shri S… http…
2 Aug 02, 1991 Recent Exchange Rate Adjustments Causes and Conseq… Dr. C.… http…
3 Jun 07, 1991 Recent Monetary Policy Measures and The Balance of… Dr. C.… http…
4 Jan 12, 1991 Banking and Profitability - Speech by C. Rangarajan Dr. C.… http…
5 Dec 06, 1990 Emerging Economic Situation - Speech by R.N Malhot… Shri R… http…
6 Nov 28, 1990 Housing Finance - Speech by R.N Malhotra            Shri R… http…
7 Nov 28, 1990 Banking, Finance and Development - Speech by R.N M… Shri R… http…
8 Oct 16, 1990 Economic Liberalism, Central Banking and the Devel… Robin … http…

[[134]]$error
NULL